@mekari/pixel3-timeline 0.0.17-dev.0 → 0.0.17-dev.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/{chunk-HIYFHIIF.mjs → chunk-LXFNJVVB.mjs} +1 -1
- package/dist/{chunk-H43TPNE5.mjs → chunk-RQ66OTZM.mjs} +25 -11
- package/dist/index.js +24 -10
- package/dist/index.mjs +2 -2
- package/dist/item.js +24 -10
- package/dist/item.mjs +2 -2
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/modules/timeline.props.d.mts +3 -3
- package/dist/modules/timeline.props.d.ts +3 -3
- package/dist/modules/timeline.types.d.mts +1 -1
- package/dist/modules/timeline.types.d.ts +1 -1
- package/dist/separator.js +24 -10
- package/dist/separator.mjs +1 -1
- package/package.json +5 -5
|
@@ -5,46 +5,60 @@ import {
|
|
|
5
5
|
// src/separator.tsx
|
|
6
6
|
import { createVNode as _createVNode } from "vue";
|
|
7
7
|
import { MpIcon } from "@mekari/pixel3-icon";
|
|
8
|
-
import { defineComponent } from "vue";
|
|
8
|
+
import { defineComponent, computed } from "vue";
|
|
9
9
|
import { timelineSeparatorSlotRecipe } from "@mekari/pixel3-styled-system/recipes";
|
|
10
10
|
import { css } from "@mekari/pixel3-styled-system/css";
|
|
11
|
+
import { usePixelTheme } from "@mekari/pixel3-utils";
|
|
11
12
|
var MpTimelineSeparator = defineComponent({
|
|
12
13
|
name: "MpTimelineSeparator",
|
|
13
14
|
props: timelineSeparatorProps,
|
|
14
15
|
setup(props) {
|
|
15
|
-
const
|
|
16
|
+
const {
|
|
17
|
+
isNextTheme
|
|
18
|
+
} = usePixelTheme();
|
|
19
|
+
const iconAttrs = computed(() => ({
|
|
16
20
|
approved: {
|
|
17
21
|
name: "done",
|
|
18
|
-
color: "green.700",
|
|
22
|
+
color: isNextTheme.value ? "icon.success" : "green.700",
|
|
19
23
|
variant: "fill"
|
|
20
24
|
},
|
|
21
25
|
canceled: {
|
|
22
26
|
name: "error",
|
|
23
|
-
color: "gray.400",
|
|
27
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
24
28
|
variant: "fill"
|
|
25
29
|
},
|
|
26
30
|
"need-approval": {
|
|
27
31
|
name: "time",
|
|
28
|
-
color: "orange.700",
|
|
32
|
+
color: isNextTheme.value ? "icon.warning" : "orange.700",
|
|
29
33
|
variant: "fill"
|
|
30
34
|
},
|
|
31
35
|
rejected: {
|
|
32
36
|
name: "error",
|
|
33
|
-
color: "red.700",
|
|
37
|
+
color: isNextTheme.value ? "icon.danger" : "red.700",
|
|
34
38
|
variant: "fill"
|
|
35
39
|
},
|
|
36
40
|
created: {
|
|
37
41
|
name: "indicator-circle",
|
|
38
|
-
color: "blue.400",
|
|
42
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
43
|
+
variant: "fill"
|
|
44
|
+
},
|
|
45
|
+
submitted: {
|
|
46
|
+
name: "indicator-circle",
|
|
47
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
48
|
+
variant: "fill"
|
|
49
|
+
},
|
|
50
|
+
next: {
|
|
51
|
+
name: "indicator-circle",
|
|
52
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
39
53
|
variant: "fill"
|
|
40
54
|
}
|
|
41
|
-
};
|
|
55
|
+
}));
|
|
42
56
|
return () => {
|
|
43
57
|
const classes = timelineSeparatorSlotRecipe();
|
|
44
58
|
const iconNode = _createVNode(MpIcon, {
|
|
45
|
-
"name": props.icon || iconAttrs[props.status].name,
|
|
46
|
-
"color": props.iconColor || iconAttrs[props.status].color,
|
|
47
|
-
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
59
|
+
"name": props.icon || iconAttrs.value[props.status].name,
|
|
60
|
+
"color": props.iconColor || iconAttrs.value[props.status].color,
|
|
61
|
+
"variant": props.iconVariant || iconAttrs.value[props.status].variant,
|
|
48
62
|
"size": "sm"
|
|
49
63
|
}, null);
|
|
50
64
|
const accordionIconNode = _createVNode("div", {
|
package/dist/index.js
CHANGED
|
@@ -345,43 +345,57 @@ var import_pixel3_icon3 = require("@mekari/pixel3-icon");
|
|
|
345
345
|
var import_vue12 = require("vue");
|
|
346
346
|
var import_recipes6 = require("@mekari/pixel3-styled-system/recipes");
|
|
347
347
|
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
348
|
+
var import_pixel3_utils2 = require("@mekari/pixel3-utils");
|
|
348
349
|
var MpTimelineSeparator = (0, import_vue12.defineComponent)({
|
|
349
350
|
name: "MpTimelineSeparator",
|
|
350
351
|
props: timelineSeparatorProps,
|
|
351
352
|
setup(props) {
|
|
352
|
-
const
|
|
353
|
+
const {
|
|
354
|
+
isNextTheme
|
|
355
|
+
} = (0, import_pixel3_utils2.usePixelTheme)();
|
|
356
|
+
const iconAttrs = (0, import_vue12.computed)(() => ({
|
|
353
357
|
approved: {
|
|
354
358
|
name: "done",
|
|
355
|
-
color: "green.700",
|
|
359
|
+
color: isNextTheme.value ? "icon.success" : "green.700",
|
|
356
360
|
variant: "fill"
|
|
357
361
|
},
|
|
358
362
|
canceled: {
|
|
359
363
|
name: "error",
|
|
360
|
-
color: "gray.400",
|
|
364
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
361
365
|
variant: "fill"
|
|
362
366
|
},
|
|
363
367
|
"need-approval": {
|
|
364
368
|
name: "time",
|
|
365
|
-
color: "orange.700",
|
|
369
|
+
color: isNextTheme.value ? "icon.warning" : "orange.700",
|
|
366
370
|
variant: "fill"
|
|
367
371
|
},
|
|
368
372
|
rejected: {
|
|
369
373
|
name: "error",
|
|
370
|
-
color: "red.700",
|
|
374
|
+
color: isNextTheme.value ? "icon.danger" : "red.700",
|
|
371
375
|
variant: "fill"
|
|
372
376
|
},
|
|
373
377
|
created: {
|
|
374
378
|
name: "indicator-circle",
|
|
375
|
-
color: "blue.400",
|
|
379
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
380
|
+
variant: "fill"
|
|
381
|
+
},
|
|
382
|
+
submitted: {
|
|
383
|
+
name: "indicator-circle",
|
|
384
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
385
|
+
variant: "fill"
|
|
386
|
+
},
|
|
387
|
+
next: {
|
|
388
|
+
name: "indicator-circle",
|
|
389
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
376
390
|
variant: "fill"
|
|
377
391
|
}
|
|
378
|
-
};
|
|
392
|
+
}));
|
|
379
393
|
return () => {
|
|
380
394
|
const classes = (0, import_recipes6.timelineSeparatorSlotRecipe)();
|
|
381
395
|
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,
|
|
396
|
+
"name": props.icon || iconAttrs.value[props.status].name,
|
|
397
|
+
"color": props.iconColor || iconAttrs.value[props.status].color,
|
|
398
|
+
"variant": props.iconVariant || iconAttrs.value[props.status].variant,
|
|
385
399
|
"size": "sm"
|
|
386
400
|
}, null);
|
|
387
401
|
const accordionIconNode = (0, import_vue11.createVNode)("div", {
|
package/dist/index.mjs
CHANGED
|
@@ -23,8 +23,8 @@ import {
|
|
|
23
23
|
} from "./chunk-AKXCTWK6.mjs";
|
|
24
24
|
import {
|
|
25
25
|
MpTimelineItem
|
|
26
|
-
} from "./chunk-
|
|
27
|
-
import "./chunk-
|
|
26
|
+
} from "./chunk-LXFNJVVB.mjs";
|
|
27
|
+
import "./chunk-RQ66OTZM.mjs";
|
|
28
28
|
import "./chunk-QHPZK7ZV.mjs";
|
|
29
29
|
import "./chunk-NQRU4NSD.mjs";
|
|
30
30
|
import {
|
package/dist/item.js
CHANGED
|
@@ -115,43 +115,57 @@ var timelineSeparatorProps = {
|
|
|
115
115
|
// src/separator.tsx
|
|
116
116
|
var import_recipes2 = require("@mekari/pixel3-styled-system/recipes");
|
|
117
117
|
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
118
|
+
var import_pixel3_utils = require("@mekari/pixel3-utils");
|
|
118
119
|
var MpTimelineSeparator = (0, import_vue4.defineComponent)({
|
|
119
120
|
name: "MpTimelineSeparator",
|
|
120
121
|
props: timelineSeparatorProps,
|
|
121
122
|
setup(props) {
|
|
122
|
-
const
|
|
123
|
+
const {
|
|
124
|
+
isNextTheme
|
|
125
|
+
} = (0, import_pixel3_utils.usePixelTheme)();
|
|
126
|
+
const iconAttrs = (0, import_vue4.computed)(() => ({
|
|
123
127
|
approved: {
|
|
124
128
|
name: "done",
|
|
125
|
-
color: "green.700",
|
|
129
|
+
color: isNextTheme.value ? "icon.success" : "green.700",
|
|
126
130
|
variant: "fill"
|
|
127
131
|
},
|
|
128
132
|
canceled: {
|
|
129
133
|
name: "error",
|
|
130
|
-
color: "gray.400",
|
|
134
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
131
135
|
variant: "fill"
|
|
132
136
|
},
|
|
133
137
|
"need-approval": {
|
|
134
138
|
name: "time",
|
|
135
|
-
color: "orange.700",
|
|
139
|
+
color: isNextTheme.value ? "icon.warning" : "orange.700",
|
|
136
140
|
variant: "fill"
|
|
137
141
|
},
|
|
138
142
|
rejected: {
|
|
139
143
|
name: "error",
|
|
140
|
-
color: "red.700",
|
|
144
|
+
color: isNextTheme.value ? "icon.danger" : "red.700",
|
|
141
145
|
variant: "fill"
|
|
142
146
|
},
|
|
143
147
|
created: {
|
|
144
148
|
name: "indicator-circle",
|
|
145
|
-
color: "blue.400",
|
|
149
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
150
|
+
variant: "fill"
|
|
151
|
+
},
|
|
152
|
+
submitted: {
|
|
153
|
+
name: "indicator-circle",
|
|
154
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
155
|
+
variant: "fill"
|
|
156
|
+
},
|
|
157
|
+
next: {
|
|
158
|
+
name: "indicator-circle",
|
|
159
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
146
160
|
variant: "fill"
|
|
147
161
|
}
|
|
148
|
-
};
|
|
162
|
+
}));
|
|
149
163
|
return () => {
|
|
150
164
|
const classes = (0, import_recipes2.timelineSeparatorSlotRecipe)();
|
|
151
165
|
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,
|
|
166
|
+
"name": props.icon || iconAttrs.value[props.status].name,
|
|
167
|
+
"color": props.iconColor || iconAttrs.value[props.status].color,
|
|
168
|
+
"variant": props.iconVariant || iconAttrs.value[props.status].variant,
|
|
155
169
|
"size": "sm"
|
|
156
170
|
}, null);
|
|
157
171
|
const accordionIconNode = (0, import_vue3.createVNode)("div", {
|
package/dist/item.mjs
CHANGED
package/dist/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/body.tsx":{"bytes":595,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":2286,"imports":[{"path":"./timeline.types","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.utils.ts":{"bytes":1363,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/accordion.tsx":{"bytes":3360,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":605,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":1517,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/separator.tsx":{"bytes":3482,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/item.tsx":{"bytes":1284,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/separator.tsx","kind":"import-statement","original":"./separator"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log.tsx":{"bytes":1607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":609,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1181,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/title.tsx":{"bytes":450,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.types.ts":{"bytes":307,"imports":[],"format":"esm"},"src/index.ts":{"bytes":365,"imports":[{"path":"src/accordion.tsx","kind":"import-statement","original":"./accordion"},{"path":"src/caption.tsx","kind":"import-statement","original":"./caption"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/document.tsx","kind":"import-statement","original":"./document"},{"path":"src/item.tsx","kind":"import-statement","original":"./item"},{"path":"src/log.tsx","kind":"import-statement","original":"./log"},{"path":"src/log-item.tsx","kind":"import-statement","original":"./log-item"},{"path":"src/timeline.tsx","kind":"import-statement","original":"./timeline"},{"path":"src/title.tsx","kind":"import-statement","original":"./title"},{"path":"src/modules/timeline.types.ts","kind":"import-statement","original":"./modules/timeline.types"}],"format":"esm"}},"outputs":{"dist/accordion.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/accordion.tsx","inputs":{"src/accordion.tsx":{"bytesInOutput":3576},"src/body.tsx":{"bytesInOutput":526},"src/modules/timeline.props.ts":{"bytesInOutput":157},"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":6317},"dist/body.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":662}},"bytes":1586},"dist/caption.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/caption.tsx","inputs":{"src/caption.tsx":{"bytesInOutput":687}},"bytes":1617},"dist/content.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/content.tsx","inputs":{"src/content.tsx":{"bytesInOutput":689}},"bytes":1619},"dist/document.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/document.tsx","inputs":{"src/document.tsx":{"bytesInOutput":1649},"src/modules/timeline.props.ts":{"bytesInOutput":196}},"bytes":2832},"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":479},"src/accordion.tsx":{"bytesInOutput":3415},"src/body.tsx":{"bytesInOutput":526},"src/modules/timeline.props.ts":{"bytesInOutput":1286},"src/modules/timeline.utils.ts":{"bytesInOutput":905},"src/caption.tsx":{"bytesInOutput":540},"src/content.tsx":{"bytesInOutput":542},"src/document.tsx":{"bytesInOutput":1507},"src/item.tsx":{"bytesInOutput":1103},"src/separator.tsx":{"bytesInOutput":3328},"src/log.tsx":{"bytesInOutput":1607},"src/log-item.tsx":{"bytesInOutput":545},"src/timeline.tsx":{"bytesInOutput":1124},"src/title.tsx":{"bytesInOutput":372}},"bytes":18794},"dist/item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/item.tsx","inputs":{"src/item.tsx":{"bytesInOutput":1233},"src/body.tsx":{"bytesInOutput":526},"src/separator.tsx":{"bytesInOutput":3316},"src/modules/timeline.props.ts":{"bytesInOutput":871}},"bytes":6982},"dist/log-item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log-item.tsx","inputs":{"src/log-item.tsx":{"bytesInOutput":689}},"bytes":1619},"dist/log.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log.tsx","inputs":{"src/log.tsx":{"bytesInOutput":1715},"src/modules/timeline.props.ts":{"bytesInOutput":62}},"bytes":2749},"dist/separator.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/separator.tsx","inputs":{"src/separator.tsx":{"bytesInOutput":3467},"src/modules/timeline.props.ts":{"bytesInOutput":439}},"bytes":4896},"dist/timeline.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/timeline.tsx","inputs":{"src/timeline.tsx":{"bytesInOutput":1253},"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":3227},"dist/title.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/title.tsx","inputs":{"src/title.tsx":{"bytesInOutput":507}},"bytes":1433},"dist/modules/timeline.props.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.props.ts","inputs":{"src/modules/timeline.props.ts":{"bytesInOutput":1668}},"bytes":2709},"dist/modules/timeline.types.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.types.ts","inputs":{"src/modules/timeline.types.ts":{"bytesInOutput":88}},"bytes":793},"dist/modules/timeline.utils.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.utils.ts","inputs":{"src/modules/timeline.utils.ts":{"bytesInOutput":1077}},"bytes":2111}}}
|
|
1
|
+
{"inputs":{"src/body.tsx":{"bytes":595,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":2286,"imports":[{"path":"./timeline.types","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.utils.ts":{"bytes":1363,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/accordion.tsx":{"bytes":3360,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":605,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":1517,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/separator.tsx":{"bytes":4185,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/item.tsx":{"bytes":1284,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/separator.tsx","kind":"import-statement","original":"./separator"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log.tsx":{"bytes":1607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":609,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1181,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/title.tsx":{"bytes":450,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.types.ts":{"bytes":330,"imports":[],"format":"esm"},"src/index.ts":{"bytes":365,"imports":[{"path":"src/accordion.tsx","kind":"import-statement","original":"./accordion"},{"path":"src/caption.tsx","kind":"import-statement","original":"./caption"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/document.tsx","kind":"import-statement","original":"./document"},{"path":"src/item.tsx","kind":"import-statement","original":"./item"},{"path":"src/log.tsx","kind":"import-statement","original":"./log"},{"path":"src/log-item.tsx","kind":"import-statement","original":"./log-item"},{"path":"src/timeline.tsx","kind":"import-statement","original":"./timeline"},{"path":"src/title.tsx","kind":"import-statement","original":"./title"},{"path":"src/modules/timeline.types.ts","kind":"import-statement","original":"./modules/timeline.types"}],"format":"esm"}},"outputs":{"dist/accordion.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/accordion.tsx","inputs":{"src/accordion.tsx":{"bytesInOutput":3576},"src/body.tsx":{"bytesInOutput":526},"src/modules/timeline.props.ts":{"bytesInOutput":157},"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":6317},"dist/body.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":662}},"bytes":1586},"dist/caption.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/caption.tsx","inputs":{"src/caption.tsx":{"bytesInOutput":687}},"bytes":1617},"dist/content.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/content.tsx","inputs":{"src/content.tsx":{"bytesInOutput":689}},"bytes":1619},"dist/document.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/document.tsx","inputs":{"src/document.tsx":{"bytesInOutput":1649},"src/modules/timeline.props.ts":{"bytesInOutput":196}},"bytes":2832},"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":479},"src/accordion.tsx":{"bytesInOutput":3415},"src/body.tsx":{"bytesInOutput":526},"src/modules/timeline.props.ts":{"bytesInOutput":1286},"src/modules/timeline.utils.ts":{"bytesInOutput":905},"src/caption.tsx":{"bytesInOutput":540},"src/content.tsx":{"bytesInOutput":542},"src/document.tsx":{"bytesInOutput":1507},"src/item.tsx":{"bytesInOutput":1103},"src/separator.tsx":{"bytesInOutput":3996},"src/log.tsx":{"bytesInOutput":1607},"src/log-item.tsx":{"bytesInOutput":545},"src/timeline.tsx":{"bytesInOutput":1124},"src/title.tsx":{"bytesInOutput":372}},"bytes":19462},"dist/item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/item.tsx","inputs":{"src/item.tsx":{"bytesInOutput":1233},"src/body.tsx":{"bytesInOutput":526},"src/separator.tsx":{"bytesInOutput":3981},"src/modules/timeline.props.ts":{"bytesInOutput":871}},"bytes":7647},"dist/log-item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log-item.tsx","inputs":{"src/log-item.tsx":{"bytesInOutput":689}},"bytes":1619},"dist/log.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log.tsx","inputs":{"src/log.tsx":{"bytesInOutput":1715},"src/modules/timeline.props.ts":{"bytesInOutput":62}},"bytes":2749},"dist/separator.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/separator.tsx","inputs":{"src/separator.tsx":{"bytesInOutput":4132},"src/modules/timeline.props.ts":{"bytesInOutput":439}},"bytes":5561},"dist/timeline.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/timeline.tsx","inputs":{"src/timeline.tsx":{"bytesInOutput":1253},"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":3227},"dist/title.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/title.tsx","inputs":{"src/title.tsx":{"bytesInOutput":507}},"bytes":1433},"dist/modules/timeline.props.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.props.ts","inputs":{"src/modules/timeline.props.ts":{"bytesInOutput":1668}},"bytes":2709},"dist/modules/timeline.types.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.types.ts","inputs":{"src/modules/timeline.types.ts":{"bytesInOutput":88}},"bytes":793},"dist/modules/timeline.utils.js":{"imports":[],"exports":[],"entryPoint":"src/modules/timeline.utils.ts","inputs":{"src/modules/timeline.utils.ts":{"bytesInOutput":1077}},"bytes":2111}}}
|
package/dist/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/body.tsx":{"bytes":595,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":2286,"imports":[{"path":"./timeline.types","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.utils.ts":{"bytes":1363,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/accordion.tsx":{"bytes":3360,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":605,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":1517,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/separator.tsx":{"bytes":3482,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/item.tsx":{"bytes":1284,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/separator.tsx","kind":"import-statement","original":"./separator"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log.tsx":{"bytes":1607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":609,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1181,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/title.tsx":{"bytes":450,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.types.ts":{"bytes":307,"imports":[],"format":"esm"},"src/index.ts":{"bytes":365,"imports":[{"path":"src/accordion.tsx","kind":"import-statement","original":"./accordion"},{"path":"src/caption.tsx","kind":"import-statement","original":"./caption"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/document.tsx","kind":"import-statement","original":"./document"},{"path":"src/item.tsx","kind":"import-statement","original":"./item"},{"path":"src/log.tsx","kind":"import-statement","original":"./log"},{"path":"src/log-item.tsx","kind":"import-statement","original":"./log-item"},{"path":"src/timeline.tsx","kind":"import-statement","original":"./timeline"},{"path":"src/title.tsx","kind":"import-statement","original":"./title"},{"path":"src/modules/timeline.types.ts","kind":"import-statement","original":"./modules/timeline.types"}],"format":"esm"}},"outputs":{"dist/log.mjs":{"imports":[{"path":"dist/chunk-OBC2XP5K.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineLog"],"entryPoint":"src/log.tsx","inputs":{},"bytes":146},"dist/separator.mjs":{"imports":[{"path":"dist/chunk-H43TPNE5.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineSeparator"],"entryPoint":"src/separator.tsx","inputs":{},"bytes":158},"dist/timeline.mjs":{"imports":[{"path":"dist/chunk-SU4SZKU2.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimeline"],"entryPoint":"src/timeline.tsx","inputs":{},"bytes":140},"dist/title.mjs":{"imports":[{"path":"dist/chunk-WXCDLWFJ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineTitle"],"entryPoint":"src/title.tsx","inputs":{},"bytes":119},"dist/modules/timeline.props.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineLogProps","timelineSeparatorProps"],"entryPoint":"src/modules/timeline.props.ts","inputs":{},"bytes":319},"dist/modules/timeline.types.mjs":{"imports":[{"path":"dist/chunk-7A5VKGA6.mjs","kind":"import-statement"}],"exports":[],"entryPoint":"src/modules/timeline.types.ts","inputs":{},"bytes":32},"dist/modules/timeline.utils.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getValidChildrens"],"entryPoint":"src/modules/timeline.utils.ts","inputs":{},"bytes":125},"dist/accordion.mjs":{"imports":[{"path":"dist/chunk-OZAKKUIV.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineAccordion"],"entryPoint":"src/accordion.tsx","inputs":{},"bytes":220},"dist/body.mjs":{"imports":[{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineBody"],"entryPoint":"src/body.tsx","inputs":{},"bytes":117},"dist/caption.mjs":{"imports":[{"path":"dist/chunk-4PZZ5B6I.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineCaption"],"entryPoint":"src/caption.tsx","inputs":{},"bytes":123},"dist/content.mjs":{"imports":[{"path":"dist/chunk-RBX3CCVL.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineContent"],"entryPoint":"src/content.tsx","inputs":{},"bytes":123},"dist/document.mjs":{"imports":[{"path":"dist/chunk-AKXCTWK6.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineDocument"],"entryPoint":"src/document.tsx","inputs":{},"bytes":156},"dist/index.mjs":{"imports":[{"path":"dist/chunk-OBC2XP5K.mjs","kind":"import-statement"},{"path":"dist/chunk-SU4SZKU2.mjs","kind":"import-statement"},{"path":"dist/chunk-WXCDLWFJ.mjs","kind":"import-statement"},{"path":"dist/chunk-7A5VKGA6.mjs","kind":"import-statement"},{"path":"dist/chunk-OZAKKUIV.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-4PZZ5B6I.mjs","kind":"import-statement"},{"path":"dist/chunk-RBX3CCVL.mjs","kind":"import-statement"},{"path":"dist/chunk-AKXCTWK6.mjs","kind":"import-statement"},{"path":"dist/chunk-HIYFHIIF.mjs","kind":"import-statement"},{"path":"dist/chunk-H43TPNE5.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-GA2OEUXW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelinLogItem","MpTimeline","MpTimelineAccordion","MpTimelineCaption","MpTimelineContent","MpTimelineDocument","MpTimelineItem","MpTimelineLog","MpTimelineTitle"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0}},"bytes":898},"dist/chunk-OBC2XP5K.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineLog"],"inputs":{"src/log.tsx":{"bytesInOutput":1450}},"bytes":1554},"dist/chunk-SU4SZKU2.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimeline"],"inputs":{"src/timeline.tsx":{"bytesInOutput":1084}},"bytes":1240},"dist/chunk-WXCDLWFJ.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineTitle"],"inputs":{"src/title.tsx":{"bytesInOutput":357}},"bytes":405},"dist/chunk-7A5VKGA6.mjs":{"imports":[],"exports":[],"inputs":{"src/modules/timeline.types.ts":{"bytesInOutput":0}},"bytes":0},"dist/chunk-OZAKKUIV.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineAccordion"],"inputs":{"src/accordion.tsx":{"bytesInOutput":3166}},"bytes":3454},"dist/chunk-GXMYD3BT.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getValidChildrens"],"inputs":{"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":1021},"dist/chunk-4PZZ5B6I.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineCaption"],"inputs":{"src/caption.tsx":{"bytesInOutput":512}},"bytes":564},"dist/chunk-RBX3CCVL.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineContent"],"inputs":{"src/content.tsx":{"bytesInOutput":514}},"bytes":566},"dist/chunk-AKXCTWK6.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"exports":["MpTimelineDocument"],"inputs":{"src/document.tsx":{"bytesInOutput":1358}},"bytes":1477},"dist/item.mjs":{"imports":[{"path":"dist/chunk-HIYFHIIF.mjs","kind":"import-statement"},{"path":"dist/chunk-H43TPNE5.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineItem"],"entryPoint":"src/item.tsx","inputs":{},"bytes":210},"dist/chunk-HIYFHIIF.mjs":{"imports":[{"path":"dist/chunk-H43TPNE5.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineItem"],"inputs":{"src/item.tsx":{"bytesInOutput":1037}},"bytes":1263},"dist/chunk-H43TPNE5.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"exports":["MpTimelineSeparator"],"inputs":{"src/separator.tsx":{"bytesInOutput":3117}},"bytes":3239},"dist/chunk-QHPZK7ZV.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineBody"],"inputs":{"src/body.tsx":{"bytesInOutput":502}},"bytes":548},"dist/chunk-NQRU4NSD.mjs":{"imports":[],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineLogProps","timelineSeparatorProps"],"inputs":{"src/modules/timeline.props.ts":{"bytesInOutput":1286}},"bytes":1449},"dist/log-item.mjs":{"imports":[{"path":"dist/chunk-GA2OEUXW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelinLogItem"],"entryPoint":"src/log-item.tsx","inputs":{},"bytes":121},"dist/chunk-GA2OEUXW.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelinLogItem"],"inputs":{"src/log-item.tsx":{"bytesInOutput":516}},"bytes":568},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
|
1
|
+
{"inputs":{"src/body.tsx":{"bytes":595,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":2286,"imports":[{"path":"./timeline.types","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.utils.ts":{"bytes":1363,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/accordion.tsx":{"bytes":3360,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":605,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":1517,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/separator.tsx":{"bytes":4185,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/item.tsx":{"bytes":1284,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/separator.tsx","kind":"import-statement","original":"./separator"},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log.tsx":{"bytes":1607,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/timeline.props.ts","kind":"import-statement","original":"./modules/timeline.props"},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":609,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1181,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/timeline.utils.ts","kind":"import-statement","original":"./modules/timeline.utils"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/title.tsx":{"bytes":450,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.types.ts":{"bytes":330,"imports":[],"format":"esm"},"src/index.ts":{"bytes":365,"imports":[{"path":"src/accordion.tsx","kind":"import-statement","original":"./accordion"},{"path":"src/caption.tsx","kind":"import-statement","original":"./caption"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/document.tsx","kind":"import-statement","original":"./document"},{"path":"src/item.tsx","kind":"import-statement","original":"./item"},{"path":"src/log.tsx","kind":"import-statement","original":"./log"},{"path":"src/log-item.tsx","kind":"import-statement","original":"./log-item"},{"path":"src/timeline.tsx","kind":"import-statement","original":"./timeline"},{"path":"src/title.tsx","kind":"import-statement","original":"./title"},{"path":"src/modules/timeline.types.ts","kind":"import-statement","original":"./modules/timeline.types"}],"format":"esm"}},"outputs":{"dist/log.mjs":{"imports":[{"path":"dist/chunk-OBC2XP5K.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineLog"],"entryPoint":"src/log.tsx","inputs":{},"bytes":146},"dist/separator.mjs":{"imports":[{"path":"dist/chunk-RQ66OTZM.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineSeparator"],"entryPoint":"src/separator.tsx","inputs":{},"bytes":158},"dist/timeline.mjs":{"imports":[{"path":"dist/chunk-SU4SZKU2.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimeline"],"entryPoint":"src/timeline.tsx","inputs":{},"bytes":140},"dist/title.mjs":{"imports":[{"path":"dist/chunk-WXCDLWFJ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineTitle"],"entryPoint":"src/title.tsx","inputs":{},"bytes":119},"dist/modules/timeline.props.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineLogProps","timelineSeparatorProps"],"entryPoint":"src/modules/timeline.props.ts","inputs":{},"bytes":319},"dist/modules/timeline.types.mjs":{"imports":[{"path":"dist/chunk-7A5VKGA6.mjs","kind":"import-statement"}],"exports":[],"entryPoint":"src/modules/timeline.types.ts","inputs":{},"bytes":32},"dist/modules/timeline.utils.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getValidChildrens"],"entryPoint":"src/modules/timeline.utils.ts","inputs":{},"bytes":125},"dist/accordion.mjs":{"imports":[{"path":"dist/chunk-OZAKKUIV.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineAccordion"],"entryPoint":"src/accordion.tsx","inputs":{},"bytes":220},"dist/body.mjs":{"imports":[{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineBody"],"entryPoint":"src/body.tsx","inputs":{},"bytes":117},"dist/caption.mjs":{"imports":[{"path":"dist/chunk-4PZZ5B6I.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineCaption"],"entryPoint":"src/caption.tsx","inputs":{},"bytes":123},"dist/content.mjs":{"imports":[{"path":"dist/chunk-RBX3CCVL.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineContent"],"entryPoint":"src/content.tsx","inputs":{},"bytes":123},"dist/document.mjs":{"imports":[{"path":"dist/chunk-AKXCTWK6.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineDocument"],"entryPoint":"src/document.tsx","inputs":{},"bytes":156},"dist/index.mjs":{"imports":[{"path":"dist/chunk-OBC2XP5K.mjs","kind":"import-statement"},{"path":"dist/chunk-SU4SZKU2.mjs","kind":"import-statement"},{"path":"dist/chunk-WXCDLWFJ.mjs","kind":"import-statement"},{"path":"dist/chunk-7A5VKGA6.mjs","kind":"import-statement"},{"path":"dist/chunk-OZAKKUIV.mjs","kind":"import-statement"},{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-4PZZ5B6I.mjs","kind":"import-statement"},{"path":"dist/chunk-RBX3CCVL.mjs","kind":"import-statement"},{"path":"dist/chunk-AKXCTWK6.mjs","kind":"import-statement"},{"path":"dist/chunk-LXFNJVVB.mjs","kind":"import-statement"},{"path":"dist/chunk-RQ66OTZM.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-GA2OEUXW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelinLogItem","MpTimeline","MpTimelineAccordion","MpTimelineCaption","MpTimelineContent","MpTimelineDocument","MpTimelineItem","MpTimelineLog","MpTimelineTitle"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0}},"bytes":898},"dist/chunk-OBC2XP5K.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineLog"],"inputs":{"src/log.tsx":{"bytesInOutput":1450}},"bytes":1554},"dist/chunk-SU4SZKU2.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimeline"],"inputs":{"src/timeline.tsx":{"bytesInOutput":1084}},"bytes":1240},"dist/chunk-WXCDLWFJ.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineTitle"],"inputs":{"src/title.tsx":{"bytesInOutput":357}},"bytes":405},"dist/chunk-7A5VKGA6.mjs":{"imports":[],"exports":[],"inputs":{"src/modules/timeline.types.ts":{"bytesInOutput":0}},"bytes":0},"dist/chunk-OZAKKUIV.mjs":{"imports":[{"path":"dist/chunk-GXMYD3BT.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineAccordion"],"inputs":{"src/accordion.tsx":{"bytesInOutput":3166}},"bytes":3454},"dist/chunk-GXMYD3BT.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getValidChildrens"],"inputs":{"src/modules/timeline.utils.ts":{"bytesInOutput":905}},"bytes":1021},"dist/chunk-4PZZ5B6I.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineCaption"],"inputs":{"src/caption.tsx":{"bytesInOutput":512}},"bytes":564},"dist/chunk-RBX3CCVL.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineContent"],"inputs":{"src/content.tsx":{"bytesInOutput":514}},"bytes":566},"dist/chunk-AKXCTWK6.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"exports":["MpTimelineDocument"],"inputs":{"src/document.tsx":{"bytesInOutput":1358}},"bytes":1477},"dist/item.mjs":{"imports":[{"path":"dist/chunk-LXFNJVVB.mjs","kind":"import-statement"},{"path":"dist/chunk-RQ66OTZM.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineItem"],"entryPoint":"src/item.tsx","inputs":{},"bytes":210},"dist/chunk-LXFNJVVB.mjs":{"imports":[{"path":"dist/chunk-RQ66OTZM.mjs","kind":"import-statement"},{"path":"dist/chunk-QHPZK7ZV.mjs","kind":"import-statement"},{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineItem"],"inputs":{"src/item.tsx":{"bytesInOutput":1037}},"bytes":1263},"dist/chunk-RQ66OTZM.mjs":{"imports":[{"path":"dist/chunk-NQRU4NSD.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"exports":["MpTimelineSeparator"],"inputs":{"src/separator.tsx":{"bytesInOutput":3745}},"bytes":3867},"dist/chunk-QHPZK7ZV.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelineBody"],"inputs":{"src/body.tsx":{"bytesInOutput":502}},"bytes":548},"dist/chunk-NQRU4NSD.mjs":{"imports":[],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineLogProps","timelineSeparatorProps"],"inputs":{"src/modules/timeline.props.ts":{"bytesInOutput":1286}},"bytes":1449},"dist/log-item.mjs":{"imports":[{"path":"dist/chunk-GA2OEUXW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelinLogItem"],"entryPoint":"src/log-item.tsx","inputs":{},"bytes":121},"dist/chunk-GA2OEUXW.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpTimelinLogItem"],"inputs":{"src/log-item.tsx":{"bytesInOutput":516}},"bytes":568},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
|
@@ -10,7 +10,7 @@ declare const timelineItemProps: {
|
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
icon: {
|
|
13
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
13
|
+
type: 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">;
|
|
14
14
|
};
|
|
15
15
|
iconVariant: {
|
|
16
16
|
type: PropType<TimelineIconVariant>;
|
|
@@ -39,7 +39,7 @@ declare const timelineDocumentProps: {
|
|
|
39
39
|
type: PropType<string>;
|
|
40
40
|
};
|
|
41
41
|
icon: {
|
|
42
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
42
|
+
type: 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">;
|
|
43
43
|
};
|
|
44
44
|
iconVariant: {
|
|
45
45
|
type: PropType<TimelineIconVariant>;
|
|
@@ -67,7 +67,7 @@ declare const timelineSeparatorProps: {
|
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
icon: {
|
|
70
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
70
|
+
type: 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">;
|
|
71
71
|
};
|
|
72
72
|
iconVariant: {
|
|
73
73
|
type: PropType<TimelineIconVariant>;
|
|
@@ -10,7 +10,7 @@ declare const timelineItemProps: {
|
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
icon: {
|
|
13
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
13
|
+
type: 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">;
|
|
14
14
|
};
|
|
15
15
|
iconVariant: {
|
|
16
16
|
type: PropType<TimelineIconVariant>;
|
|
@@ -39,7 +39,7 @@ declare const timelineDocumentProps: {
|
|
|
39
39
|
type: PropType<string>;
|
|
40
40
|
};
|
|
41
41
|
icon: {
|
|
42
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
42
|
+
type: 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">;
|
|
43
43
|
};
|
|
44
44
|
iconVariant: {
|
|
45
45
|
type: PropType<TimelineIconVariant>;
|
|
@@ -67,7 +67,7 @@ declare const timelineSeparatorProps: {
|
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
icon: {
|
|
70
|
-
type: PropType<"function" | "filter" | "done" | "
|
|
70
|
+
type: 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">;
|
|
71
71
|
};
|
|
72
72
|
iconVariant: {
|
|
73
73
|
type: PropType<TimelineIconVariant>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type TimelinePosition = 'first' | 'last' | 'middle';
|
|
2
2
|
type TimelineIconVariant = 'outline' | 'duotone' | 'fill';
|
|
3
|
-
type TimelineStatus = 'approved' | 'canceled' | 'need-approval' | 'rejected' | 'created';
|
|
3
|
+
type TimelineStatus = 'approved' | 'canceled' | 'need-approval' | 'rejected' | 'created' | 'submitted' | 'next';
|
|
4
4
|
|
|
5
5
|
export { TimelineIconVariant, TimelinePosition, TimelineStatus };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type TimelinePosition = 'first' | 'last' | 'middle';
|
|
2
2
|
type TimelineIconVariant = 'outline' | 'duotone' | 'fill';
|
|
3
|
-
type TimelineStatus = 'approved' | 'canceled' | 'need-approval' | 'rejected' | 'created';
|
|
3
|
+
type TimelineStatus = 'approved' | 'canceled' | 'need-approval' | 'rejected' | 'created' | 'submitted' | 'next';
|
|
4
4
|
|
|
5
5
|
export { TimelineIconVariant, TimelinePosition, TimelineStatus };
|
package/dist/separator.js
CHANGED
|
@@ -62,43 +62,57 @@ var timelineSeparatorProps = {
|
|
|
62
62
|
// src/separator.tsx
|
|
63
63
|
var import_recipes = require("@mekari/pixel3-styled-system/recipes");
|
|
64
64
|
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
65
|
+
var import_pixel3_utils = require("@mekari/pixel3-utils");
|
|
65
66
|
var MpTimelineSeparator = (0, import_vue2.defineComponent)({
|
|
66
67
|
name: "MpTimelineSeparator",
|
|
67
68
|
props: timelineSeparatorProps,
|
|
68
69
|
setup(props) {
|
|
69
|
-
const
|
|
70
|
+
const {
|
|
71
|
+
isNextTheme
|
|
72
|
+
} = (0, import_pixel3_utils.usePixelTheme)();
|
|
73
|
+
const iconAttrs = (0, import_vue2.computed)(() => ({
|
|
70
74
|
approved: {
|
|
71
75
|
name: "done",
|
|
72
|
-
color: "green.700",
|
|
76
|
+
color: isNextTheme.value ? "icon.success" : "green.700",
|
|
73
77
|
variant: "fill"
|
|
74
78
|
},
|
|
75
79
|
canceled: {
|
|
76
80
|
name: "error",
|
|
77
|
-
color: "gray.400",
|
|
81
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
78
82
|
variant: "fill"
|
|
79
83
|
},
|
|
80
84
|
"need-approval": {
|
|
81
85
|
name: "time",
|
|
82
|
-
color: "orange.700",
|
|
86
|
+
color: isNextTheme.value ? "icon.warning" : "orange.700",
|
|
83
87
|
variant: "fill"
|
|
84
88
|
},
|
|
85
89
|
rejected: {
|
|
86
90
|
name: "error",
|
|
87
|
-
color: "red.700",
|
|
91
|
+
color: isNextTheme.value ? "icon.danger" : "red.700",
|
|
88
92
|
variant: "fill"
|
|
89
93
|
},
|
|
90
94
|
created: {
|
|
91
95
|
name: "indicator-circle",
|
|
92
|
-
color: "blue.400",
|
|
96
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
97
|
+
variant: "fill"
|
|
98
|
+
},
|
|
99
|
+
submitted: {
|
|
100
|
+
name: "indicator-circle",
|
|
101
|
+
color: isNextTheme.value ? "icon.brand" : "blue.400",
|
|
102
|
+
variant: "fill"
|
|
103
|
+
},
|
|
104
|
+
next: {
|
|
105
|
+
name: "indicator-circle",
|
|
106
|
+
color: isNextTheme.value ? "icon.subtle" : "gray.400",
|
|
93
107
|
variant: "fill"
|
|
94
108
|
}
|
|
95
|
-
};
|
|
109
|
+
}));
|
|
96
110
|
return () => {
|
|
97
111
|
const classes = (0, import_recipes.timelineSeparatorSlotRecipe)();
|
|
98
112
|
const iconNode = (0, import_vue.createVNode)(import_pixel3_icon.MpIcon, {
|
|
99
|
-
"name": props.icon || iconAttrs[props.status].name,
|
|
100
|
-
"color": props.iconColor || iconAttrs[props.status].color,
|
|
101
|
-
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
113
|
+
"name": props.icon || iconAttrs.value[props.status].name,
|
|
114
|
+
"color": props.iconColor || iconAttrs.value[props.status].color,
|
|
115
|
+
"variant": props.iconVariant || iconAttrs.value[props.status].variant,
|
|
102
116
|
"size": "sm"
|
|
103
117
|
}, null);
|
|
104
118
|
const accordionIconNode = (0, import_vue.createVNode)("div", {
|
package/dist/separator.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-timeline",
|
|
3
3
|
"description": "Timeline component for mekari pixel 3",
|
|
4
|
-
"version": "0.0.17-dev.
|
|
4
|
+
"version": "0.0.17-dev.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mekari/pixel3-styled-system": "0.1.3-dev.
|
|
12
|
-
"@mekari/pixel3-
|
|
13
|
-
"@mekari/pixel3-
|
|
14
|
-
"@mekari/pixel3-
|
|
11
|
+
"@mekari/pixel3-styled-system": "0.1.3-dev.2",
|
|
12
|
+
"@mekari/pixel3-utils": "0.0.7",
|
|
13
|
+
"@mekari/pixel3-icon": "0.0.18-dev.2",
|
|
14
|
+
"@mekari/pixel3-transition": "0.0.17-dev.2"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"vue": "^3.4.9"
|