@mekari/pixel3-timeline 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/accordion.d.mts +28 -0
- package/dist/accordion.d.ts +28 -0
- package/dist/accordion.js +165 -0
- package/dist/accordion.mjs +9 -0
- package/dist/body.d.mts +6 -0
- package/dist/body.d.ts +6 -0
- package/dist/body.js +50 -0
- package/dist/body.mjs +7 -0
- package/dist/caption.d.mts +6 -0
- package/dist/caption.d.ts +6 -0
- package/dist/caption.js +50 -0
- package/dist/caption.mjs +7 -0
- package/dist/chunk-34WPFRDZ.mjs +63 -0
- package/dist/chunk-6JLFY5TN.mjs +71 -0
- package/dist/chunk-7DG62NMG.mjs +47 -0
- package/dist/chunk-BR4DIYFA.mjs +85 -0
- package/dist/chunk-F5W3GZXM.mjs +26 -0
- package/dist/chunk-GIZF7OP5.mjs +23 -0
- package/dist/chunk-HSNDCO4E.mjs +23 -0
- package/dist/chunk-IM7DTIFU.mjs +71 -0
- package/dist/chunk-QZ7VFGWC.mjs +6 -0
- package/dist/chunk-TT37T2C6.mjs +43 -0
- package/dist/chunk-U2PMOVHB.mjs +111 -0
- package/dist/chunk-WXCDLWFJ.mjs +19 -0
- package/dist/chunk-ZG4NN7A5.mjs +26 -0
- package/dist/content.d.mts +6 -0
- package/dist/content.d.ts +6 -0
- package/dist/content.js +47 -0
- package/dist/content.mjs +7 -0
- package/dist/document.d.mts +36 -0
- package/dist/document.d.ts +36 -0
- package/dist/document.js +110 -0
- package/dist/document.mjs +8 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +587 -0
- package/dist/index.mjs +42 -0
- package/dist/item.d.mts +42 -0
- package/dist/item.d.ts +42 -0
- package/dist/item.js +200 -0
- package/dist/item.mjs +10 -0
- package/dist/log-item.d.mts +6 -0
- package/dist/log-item.d.ts +6 -0
- package/dist/log-item.js +47 -0
- package/dist/log-item.mjs +7 -0
- package/dist/log.d.mts +6 -0
- package/dist/log.d.ts +6 -0
- package/dist/log.js +87 -0
- package/dist/log.mjs +7 -0
- package/dist/metafile-cjs.json +1 -0
- package/dist/metafile-esm.json +1 -0
- package/dist/modules/timeline.props.d.mts +67 -0
- package/dist/modules/timeline.props.d.ts +67 -0
- package/dist/modules/timeline.props.js +98 -0
- package/dist/modules/timeline.props.mjs +13 -0
- package/dist/separator.d.mts +42 -0
- package/dist/separator.d.ts +42 -0
- package/dist/separator.js +127 -0
- package/dist/separator.mjs +8 -0
- package/dist/timeline.d.mts +9 -0
- package/dist/timeline.d.ts +9 -0
- package/dist/timeline.js +68 -0
- package/dist/timeline.mjs +7 -0
- package/dist/title.d.mts +6 -0
- package/dist/title.d.ts +6 -0
- package/dist/title.js +43 -0
- package/dist/title.mjs +7 -0
- package/package.json +43 -0
package/dist/item.d.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
2
|
+
import * as vue from 'vue';
|
|
3
|
+
|
|
4
|
+
declare const MpTimelineItem: vue.DefineComponent<{
|
|
5
|
+
position: {
|
|
6
|
+
type: vue.PropType<"first" | "last" | "middle">;
|
|
7
|
+
};
|
|
8
|
+
status: {
|
|
9
|
+
type: vue.PropType<"approved" | "canceled" | "need-approval" | "rejected" | "created">;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
icon: {
|
|
13
|
+
type: vue.PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
iconVariant: {
|
|
16
|
+
type: vue.PropType<"fill" | "outline" | "duotone">;
|
|
17
|
+
};
|
|
18
|
+
iconColor: {
|
|
19
|
+
type: vue.PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
22
|
+
position: {
|
|
23
|
+
type: vue.PropType<"first" | "last" | "middle">;
|
|
24
|
+
};
|
|
25
|
+
status: {
|
|
26
|
+
type: vue.PropType<"approved" | "canceled" | "need-approval" | "rejected" | "created">;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
icon: {
|
|
30
|
+
type: vue.PropType<string>;
|
|
31
|
+
};
|
|
32
|
+
iconVariant: {
|
|
33
|
+
type: vue.PropType<"fill" | "outline" | "duotone">;
|
|
34
|
+
};
|
|
35
|
+
iconColor: {
|
|
36
|
+
type: vue.PropType<string>;
|
|
37
|
+
};
|
|
38
|
+
}>>, {
|
|
39
|
+
status: "approved" | "canceled" | "need-approval" | "rejected" | "created";
|
|
40
|
+
}>;
|
|
41
|
+
|
|
42
|
+
export { MpTimelineItem };
|
package/dist/item.js
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/item.tsx
|
|
21
|
+
var item_exports = {};
|
|
22
|
+
__export(item_exports, {
|
|
23
|
+
MpTimelineItem: () => MpTimelineItem
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(item_exports);
|
|
26
|
+
var import_vue5 = require("vue");
|
|
27
|
+
var import_css3 = require("@mekari/pixel3-styled-system/css");
|
|
28
|
+
var import_vue6 = require("vue");
|
|
29
|
+
|
|
30
|
+
// src/body.tsx
|
|
31
|
+
var import_vue = require("vue");
|
|
32
|
+
var import_vue2 = require("vue");
|
|
33
|
+
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
34
|
+
var MpTimelineBody = (0, import_vue2.defineComponent)({
|
|
35
|
+
name: "MpTimelineBody",
|
|
36
|
+
setup(_props, {
|
|
37
|
+
slots
|
|
38
|
+
}) {
|
|
39
|
+
return () => {
|
|
40
|
+
return (0, import_vue.createVNode)("div", {
|
|
41
|
+
"data-pixel-component": "MpTimelineBody",
|
|
42
|
+
"class": (0, import_css.css)({
|
|
43
|
+
marginLeft: "3",
|
|
44
|
+
paddingTop: "6px",
|
|
45
|
+
paddingBottom: "3",
|
|
46
|
+
width: "full"
|
|
47
|
+
})
|
|
48
|
+
}, [slots.default && slots.default()]);
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
// src/separator.tsx
|
|
54
|
+
var import_vue3 = require("vue");
|
|
55
|
+
var import_pixel3_icon = require("@mekari/pixel3-icon");
|
|
56
|
+
var import_css2 = require("@mekari/pixel3-styled-system/css");
|
|
57
|
+
var import_patterns = require("@mekari/pixel3-styled-system/patterns");
|
|
58
|
+
var import_vue4 = require("vue");
|
|
59
|
+
|
|
60
|
+
// src/modules/timeline.props.ts
|
|
61
|
+
var timelineItemProps = {
|
|
62
|
+
position: {
|
|
63
|
+
type: String
|
|
64
|
+
},
|
|
65
|
+
status: {
|
|
66
|
+
type: String,
|
|
67
|
+
default: "created"
|
|
68
|
+
},
|
|
69
|
+
icon: {
|
|
70
|
+
type: String
|
|
71
|
+
},
|
|
72
|
+
iconVariant: {
|
|
73
|
+
type: String
|
|
74
|
+
},
|
|
75
|
+
iconColor: {
|
|
76
|
+
type: String
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
var timelineSeparatorProps = {
|
|
80
|
+
position: {
|
|
81
|
+
type: String
|
|
82
|
+
},
|
|
83
|
+
status: {
|
|
84
|
+
type: String,
|
|
85
|
+
default: "created"
|
|
86
|
+
},
|
|
87
|
+
icon: {
|
|
88
|
+
type: String
|
|
89
|
+
},
|
|
90
|
+
iconVariant: {
|
|
91
|
+
type: String
|
|
92
|
+
},
|
|
93
|
+
iconColor: {
|
|
94
|
+
type: String
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
// src/separator.tsx
|
|
99
|
+
var MpTimelineSeparator = (0, import_vue4.defineComponent)({
|
|
100
|
+
name: "MpTimelineSeparator",
|
|
101
|
+
props: timelineSeparatorProps,
|
|
102
|
+
setup(props) {
|
|
103
|
+
const classes = {
|
|
104
|
+
wrapper: (0, import_patterns.flex)({
|
|
105
|
+
flexDirection: "column",
|
|
106
|
+
alignItems: "center"
|
|
107
|
+
}),
|
|
108
|
+
topConnector: (0, import_css2.css)({
|
|
109
|
+
height: "6px",
|
|
110
|
+
width: "2px",
|
|
111
|
+
backgroundColor: props.position === "first" ? "transparent" : "gray.100",
|
|
112
|
+
roundedBottom: "2px"
|
|
113
|
+
}),
|
|
114
|
+
bottomConnector: (0, import_css2.css)({
|
|
115
|
+
height: "100%",
|
|
116
|
+
flexGrow: 1,
|
|
117
|
+
width: "2px",
|
|
118
|
+
backgroundColor: props.position === "last" ? "transparent" : "gray.100",
|
|
119
|
+
roundedTop: "2px"
|
|
120
|
+
})
|
|
121
|
+
};
|
|
122
|
+
const iconAttrs = {
|
|
123
|
+
approved: {
|
|
124
|
+
name: "done",
|
|
125
|
+
color: "green.700",
|
|
126
|
+
variant: "fill"
|
|
127
|
+
},
|
|
128
|
+
canceled: {
|
|
129
|
+
name: "error",
|
|
130
|
+
color: "gray.400",
|
|
131
|
+
variant: "fill"
|
|
132
|
+
},
|
|
133
|
+
"need-approval": {
|
|
134
|
+
name: "time",
|
|
135
|
+
color: "orange.700",
|
|
136
|
+
variant: "fill"
|
|
137
|
+
},
|
|
138
|
+
rejected: {
|
|
139
|
+
name: "error",
|
|
140
|
+
color: "red.700",
|
|
141
|
+
variant: "fill"
|
|
142
|
+
},
|
|
143
|
+
created: {
|
|
144
|
+
name: "indicator-circle",
|
|
145
|
+
color: "blue.400",
|
|
146
|
+
variant: "fill"
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
return () => {
|
|
150
|
+
return (0, import_vue3.createVNode)("div", {
|
|
151
|
+
"data-pixel-component": "MpTimelineSeparator",
|
|
152
|
+
"class": classes.wrapper
|
|
153
|
+
}, [(0, import_vue3.createVNode)("div", {
|
|
154
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
155
|
+
"data-connector": "top",
|
|
156
|
+
"class": classes.topConnector
|
|
157
|
+
}, null), (0, import_vue3.createVNode)(import_pixel3_icon.MpIcon, {
|
|
158
|
+
"name": props.icon || iconAttrs[props.status].name,
|
|
159
|
+
"color": props.iconColor || iconAttrs[props.status].color,
|
|
160
|
+
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
161
|
+
"size": "sm"
|
|
162
|
+
}, null), (0, import_vue3.createVNode)("div", {
|
|
163
|
+
"data-connector": "bottom",
|
|
164
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
165
|
+
"class": classes.bottomConnector
|
|
166
|
+
}, null)]);
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
// src/item.tsx
|
|
172
|
+
var MpTimelineItem = (0, import_vue6.defineComponent)({
|
|
173
|
+
name: "MpTimelineItem",
|
|
174
|
+
props: timelineItemProps,
|
|
175
|
+
setup(props, {
|
|
176
|
+
slots
|
|
177
|
+
}) {
|
|
178
|
+
return () => {
|
|
179
|
+
return (0, import_vue5.createVNode)("li", {
|
|
180
|
+
"data-pixel-component": "MpTimelineItem",
|
|
181
|
+
"data-position": props.position,
|
|
182
|
+
"class": (0, import_css3.css)({
|
|
183
|
+
display: "flex"
|
|
184
|
+
})
|
|
185
|
+
}, [(0, import_vue5.createVNode)(MpTimelineSeparator, {
|
|
186
|
+
"position": props.position,
|
|
187
|
+
"status": props.status,
|
|
188
|
+
"icon": props.icon,
|
|
189
|
+
"iconVariant": props.iconVariant,
|
|
190
|
+
"iconColor": props.iconColor
|
|
191
|
+
}, null), (0, import_vue5.createVNode)(MpTimelineBody, null, {
|
|
192
|
+
default: () => [slots.default && slots.default()]
|
|
193
|
+
})]);
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
198
|
+
0 && (module.exports = {
|
|
199
|
+
MpTimelineItem
|
|
200
|
+
});
|
package/dist/item.mjs
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare const MpTimelinLogItem: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
|
|
6
|
+
export { MpTimelinLogItem };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare const MpTimelinLogItem: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
|
|
6
|
+
export { MpTimelinLogItem };
|
package/dist/log-item.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/log-item.tsx
|
|
21
|
+
var log_item_exports = {};
|
|
22
|
+
__export(log_item_exports, {
|
|
23
|
+
MpTimelinLogItem: () => MpTimelinLogItem
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(log_item_exports);
|
|
26
|
+
var import_vue = require("vue");
|
|
27
|
+
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
28
|
+
var import_vue2 = require("vue");
|
|
29
|
+
var MpTimelinLogItem = (0, import_vue2.defineComponent)({
|
|
30
|
+
name: "MpTimelinLogItem",
|
|
31
|
+
setup(_props, {
|
|
32
|
+
slots
|
|
33
|
+
}) {
|
|
34
|
+
return () => {
|
|
35
|
+
return (0, import_vue.createVNode)("li", {
|
|
36
|
+
"data-pixel-component": "MpTimelinLogItem",
|
|
37
|
+
"class": (0, import_css.css)({
|
|
38
|
+
color: "gray.600"
|
|
39
|
+
})
|
|
40
|
+
}, [slots.default && slots.default()]);
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
45
|
+
0 && (module.exports = {
|
|
46
|
+
MpTimelinLogItem
|
|
47
|
+
});
|
package/dist/log.d.mts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare const MpTimelineLog: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
|
|
6
|
+
export { MpTimelineLog };
|
package/dist/log.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare const MpTimelineLog: vue.DefineComponent<{}, () => vue_jsx_runtime.JSX.Element, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
|
|
6
|
+
export { MpTimelineLog };
|
package/dist/log.js
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/log.tsx
|
|
21
|
+
var log_exports = {};
|
|
22
|
+
__export(log_exports, {
|
|
23
|
+
MpTimelineLog: () => MpTimelineLog
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(log_exports);
|
|
26
|
+
var import_vue = require("vue");
|
|
27
|
+
var import_pixel3_icon = require("@mekari/pixel3-icon");
|
|
28
|
+
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
29
|
+
var import_patterns = require("@mekari/pixel3-styled-system/patterns");
|
|
30
|
+
var import_pixel3_transition = require("@mekari/pixel3-transition");
|
|
31
|
+
var import_vue2 = require("vue");
|
|
32
|
+
var MpTimelineLog = (0, import_vue2.defineComponent)({
|
|
33
|
+
name: "MpTimelineLog",
|
|
34
|
+
setup(_props, {
|
|
35
|
+
slots
|
|
36
|
+
}) {
|
|
37
|
+
const isOpen = (0, import_vue2.ref)(false);
|
|
38
|
+
return () => {
|
|
39
|
+
return (0, import_vue.createVNode)("div", {
|
|
40
|
+
"class": (0, import_css.css)({
|
|
41
|
+
display: "flex",
|
|
42
|
+
flexDirection: "column"
|
|
43
|
+
})
|
|
44
|
+
}, [(0, import_vue.createVNode)("button", {
|
|
45
|
+
"data-pixel-component": "MpTimelineLog",
|
|
46
|
+
"aria-expanded": isOpen.value || void 0,
|
|
47
|
+
"class": ["group", (0, import_patterns.flex)({
|
|
48
|
+
cursor: "pointer"
|
|
49
|
+
})],
|
|
50
|
+
"onClick": () => isOpen.value = !isOpen.value
|
|
51
|
+
}, [(0, import_vue.createVNode)("p", {
|
|
52
|
+
"class": (0, import_css.css)({
|
|
53
|
+
color: "gray.400",
|
|
54
|
+
_groupHover: {
|
|
55
|
+
color: "blue.500"
|
|
56
|
+
}
|
|
57
|
+
})
|
|
58
|
+
}, [(0, import_vue.createTextVNode)("Change log")]), (0, import_vue.createVNode)(import_pixel3_icon.MpIcon, {
|
|
59
|
+
"name": "caret-down",
|
|
60
|
+
"class": (0, import_css.css)({
|
|
61
|
+
color: "gray.400",
|
|
62
|
+
_groupHover: {
|
|
63
|
+
color: "blue.500"
|
|
64
|
+
}
|
|
65
|
+
}),
|
|
66
|
+
"style": {
|
|
67
|
+
transition: "transform 0.2s",
|
|
68
|
+
transformOrigin: "center",
|
|
69
|
+
transform: isOpen.value ? "rotate(-180deg)" : ""
|
|
70
|
+
}
|
|
71
|
+
}, null)]), (0, import_vue.createVNode)(import_pixel3_transition.MpAnimateHeight, {
|
|
72
|
+
"isOpen": isOpen.value,
|
|
73
|
+
"as": "ul",
|
|
74
|
+
"class": (0, import_css.css)({
|
|
75
|
+
listStyleType: "disc",
|
|
76
|
+
paddingLeft: 5
|
|
77
|
+
})
|
|
78
|
+
}, {
|
|
79
|
+
default: () => [slots.default && slots.default()]
|
|
80
|
+
})]);
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
85
|
+
0 && (module.exports = {
|
|
86
|
+
MpTimelineLog
|
|
87
|
+
});
|
package/dist/log.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"src/body.tsx":{"bytes":648,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":1681,"imports":[],"format":"esm"},"src/accordion.tsx":{"bytes":3710,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":655,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":571,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":2050,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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"}],"format":"esm"},"src/separator.tsx":{"bytes":2561,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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"}],"format":"esm"},"src/item.tsx":{"bytes":1083,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","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"}],"format":"esm"},"src/log.tsx":{"bytes":1836,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":571,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1342,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"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/index.ts":{"bytes":323,"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"}],"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-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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/css","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/accordion.tsx","inputs":{"src/accordion.tsx":{"bytesInOutput":4050},"src/body.tsx":{"bytesInOutput":586},"src/modules/timeline.props.ts":{"bytesInOutput":157}},"bytes":5890},"dist/body.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":722}},"bytes":1646},"dist/caption.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/caption.tsx","inputs":{"src/caption.tsx":{"bytesInOutput":744}},"bytes":1674},"dist/content.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/content.tsx","inputs":{"src/content.tsx":{"bytesInOutput":660}},"bytes":1590},"dist/document.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/document.tsx","inputs":{"src/document.tsx":{"bytesInOutput":2245},"src/modules/timeline.props.ts":{"bytesInOutput":196}},"bytes":3428},"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","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":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","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}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":479},"src/accordion.tsx":{"bytesInOutput":3889},"src/body.tsx":{"bytesInOutput":586},"src/modules/timeline.props.ts":{"bytesInOutput":818},"src/caption.tsx":{"bytesInOutput":597},"src/content.tsx":{"bytesInOutput":513},"src/document.tsx":{"bytesInOutput":2108},"src/item.tsx":{"bytesInOutput":909},"src/separator.tsx":{"bytesInOutput":2393},"src/log.tsx":{"bytesInOutput":1991},"src/log-item.tsx":{"bytesInOutput":517},"src/timeline.tsx":{"bytesInOutput":1274},"src/title.tsx":{"bytesInOutput":372}},"bytes":17905},"dist/item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","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/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/item.tsx","inputs":{"src/item.tsx":{"bytesInOutput":1039},"src/body.tsx":{"bytesInOutput":586},"src/separator.tsx":{"bytesInOutput":2382},"src/modules/timeline.props.ts":{"bytesInOutput":465}},"bytes":5508},"dist/log-item.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log-item.tsx","inputs":{"src/log-item.tsx":{"bytesInOutput":661}},"bytes":1591},"dist/log.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"require-call","external":true},{"path":"@mekari/pixel3-transition","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/log.tsx","inputs":{"src/log.tsx":{"bytesInOutput":2094}},"bytes":3016},"dist/separator.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/separator.tsx","inputs":{"src/separator.tsx":{"bytesInOutput":2535},"src/modules/timeline.props.ts":{"bytesInOutput":235}},"bytes":3760},"dist/timeline.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/timeline.tsx","inputs":{"src/timeline.tsx":{"bytesInOutput":1403}},"bytes":2417},"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":1156}},"bytes":2177}}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"src/body.tsx":{"bytes":648,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/modules/timeline.props.ts":{"bytes":1681,"imports":[],"format":"esm"},"src/accordion.tsx":{"bytes":3710,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/caption.tsx":{"bytes":655,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":571,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"format":"esm"},"src/document.tsx":{"bytes":2050,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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"}],"format":"esm"},"src/separator.tsx":{"bytes":2561,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","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"}],"format":"esm"},"src/item.tsx":{"bytes":1083,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","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"}],"format":"esm"},"src/log.tsx":{"bytes":1836,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/log-item.tsx":{"bytes":571,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"format":"esm"},"src/timeline.tsx":{"bytes":1342,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"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/index.ts":{"bytes":323,"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"}],"format":"esm"}},"outputs":{"dist/log.mjs":{"imports":[{"path":"dist/chunk-34WPFRDZ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineLog"],"entryPoint":"src/log.tsx","inputs":{},"bytes":115},"dist/separator.mjs":{"imports":[{"path":"dist/chunk-BR4DIYFA.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.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-7DG62NMG.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimeline"],"entryPoint":"src/timeline.tsx","inputs":{},"bytes":109},"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-6JLFY5TN.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineSeparatorProps"],"entryPoint":"src/modules/timeline.props.ts","inputs":{},"bytes":279},"dist/accordion.mjs":{"imports":[{"path":"dist/chunk-U2PMOVHB.mjs","kind":"import-statement"},{"path":"dist/chunk-F5W3GZXM.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineAccordion"],"entryPoint":"src/accordion.tsx","inputs":{},"bytes":189},"dist/body.mjs":{"imports":[{"path":"dist/chunk-F5W3GZXM.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-ZG4NN7A5.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-HSNDCO4E.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-IM7DTIFU.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.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-34WPFRDZ.mjs","kind":"import-statement"},{"path":"dist/chunk-7DG62NMG.mjs","kind":"import-statement"},{"path":"dist/chunk-WXCDLWFJ.mjs","kind":"import-statement"},{"path":"dist/chunk-U2PMOVHB.mjs","kind":"import-statement"},{"path":"dist/chunk-ZG4NN7A5.mjs","kind":"import-statement"},{"path":"dist/chunk-HSNDCO4E.mjs","kind":"import-statement"},{"path":"dist/chunk-IM7DTIFU.mjs","kind":"import-statement"},{"path":"dist/chunk-TT37T2C6.mjs","kind":"import-statement"},{"path":"dist/chunk-BR4DIYFA.mjs","kind":"import-statement"},{"path":"dist/chunk-F5W3GZXM.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"dist/chunk-GIZF7OP5.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":836},"dist/chunk-34WPFRDZ.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineLog"],"inputs":{"src/log.tsx":{"bytesInOutput":1740}},"bytes":1784},"dist/chunk-7DG62NMG.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimeline"],"inputs":{"src/timeline.tsx":{"bytesInOutput":1227}},"bytes":1323},"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-U2PMOVHB.mjs":{"imports":[{"path":"dist/chunk-F5W3GZXM.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.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-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"@mekari/pixel3-transition","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineAccordion"],"inputs":{"src/accordion.tsx":{"bytesInOutput":3520}},"bytes":3748},"dist/chunk-ZG4NN7A5.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"exports":["MpTimelineCaption"],"inputs":{"src/caption.tsx":{"bytesInOutput":562}},"bytes":614},"dist/chunk-HSNDCO4E.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"exports":["MpTimelineContent"],"inputs":{"src/content.tsx":{"bytesInOutput":478}},"bytes":530},"dist/chunk-IM7DTIFU.mjs":{"imports":[{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineDocument"],"inputs":{"src/document.tsx":{"bytesInOutput":1891}},"bytes":2010},"dist/item.mjs":{"imports":[{"path":"dist/chunk-TT37T2C6.mjs","kind":"import-statement"},{"path":"dist/chunk-BR4DIYFA.mjs","kind":"import-statement"},{"path":"dist/chunk-F5W3GZXM.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelineItem"],"entryPoint":"src/item.tsx","inputs":{},"bytes":210},"dist/chunk-TT37T2C6.mjs":{"imports":[{"path":"dist/chunk-BR4DIYFA.mjs","kind":"import-statement"},{"path":"dist/chunk-F5W3GZXM.mjs","kind":"import-statement"},{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineItem"],"inputs":{"src/item.tsx":{"bytesInOutput":836}},"bytes":1062},"dist/chunk-BR4DIYFA.mjs":{"imports":[{"path":"dist/chunk-6JLFY5TN.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/patterns","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelineSeparator"],"inputs":{"src/separator.tsx":{"bytesInOutput":2221}},"bytes":2343},"dist/chunk-F5W3GZXM.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true}],"exports":["MpTimelineBody"],"inputs":{"src/body.tsx":{"bytesInOutput":555}},"bytes":601},"dist/chunk-6JLFY5TN.mjs":{"imports":[],"exports":["timelineAccordionProps","timelineDocumentProps","timelineItemProps","timelineSeparatorProps"],"inputs":{"src/modules/timeline.props.ts":{"bytesInOutput":818}},"bytes":961},"dist/log-item.mjs":{"imports":[{"path":"dist/chunk-GIZF7OP5.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTimelinLogItem"],"entryPoint":"src/log-item.tsx","inputs":{},"bytes":121},"dist/chunk-GIZF7OP5.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/css","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTimelinLogItem"],"inputs":{"src/log-item.tsx":{"bytesInOutput":478}},"bytes":530},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const timelineItemProps: {
|
|
4
|
+
position: {
|
|
5
|
+
type: PropType<"last" | "first" | "middle">;
|
|
6
|
+
};
|
|
7
|
+
status: {
|
|
8
|
+
type: PropType<"approved" | "canceled" | "need-approval" | "rejected" | "created">;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
icon: {
|
|
12
|
+
type: PropType<string>;
|
|
13
|
+
};
|
|
14
|
+
iconVariant: {
|
|
15
|
+
type: PropType<"fill" | "outline" | "duotone">;
|
|
16
|
+
};
|
|
17
|
+
iconColor: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
declare const timelineDocumentProps: {
|
|
22
|
+
title: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
};
|
|
25
|
+
fileSize: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
};
|
|
28
|
+
icon: {
|
|
29
|
+
type: PropType<string>;
|
|
30
|
+
};
|
|
31
|
+
iconVariant: {
|
|
32
|
+
type: PropType<"fill" | "outline" | "duotone">;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
declare const timelineAccordionProps: {
|
|
37
|
+
isOpen: {
|
|
38
|
+
type: PropType<boolean>;
|
|
39
|
+
};
|
|
40
|
+
label: {
|
|
41
|
+
type: PropType<string>;
|
|
42
|
+
required: boolean;
|
|
43
|
+
};
|
|
44
|
+
position: {
|
|
45
|
+
type: PropType<string>;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
declare const timelineSeparatorProps: {
|
|
49
|
+
position: {
|
|
50
|
+
type: PropType<"last" | "first" | "middle">;
|
|
51
|
+
};
|
|
52
|
+
status: {
|
|
53
|
+
type: PropType<"approved" | "canceled" | "need-approval" | "rejected" | "created">;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
icon: {
|
|
57
|
+
type: PropType<string>;
|
|
58
|
+
};
|
|
59
|
+
iconVariant: {
|
|
60
|
+
type: PropType<"fill" | "outline" | "duotone">;
|
|
61
|
+
};
|
|
62
|
+
iconColor: {
|
|
63
|
+
type: PropType<string>;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export { timelineAccordionProps, timelineDocumentProps, timelineItemProps, timelineSeparatorProps };
|