@cyberpunk-vue/components 1.7.14 → 1.8.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.
Files changed (35) hide show
  1. package/dist/avatar/index.d.ts +115 -40
  2. package/dist/avatar/index.d.ts.map +1 -1
  3. package/dist/avatar/src/avatar-group.vue.d.ts +18 -1
  4. package/dist/avatar/src/avatar-group.vue.d.ts.map +1 -1
  5. package/dist/container/index.d.ts +4 -2
  6. package/dist/container/index.d.ts.map +1 -1
  7. package/dist/container/src/container.vue.d.ts +4 -2
  8. package/dist/container/src/container.vue.d.ts.map +1 -1
  9. package/dist/icon/src/icon.d.ts +1 -1
  10. package/dist/icon/src/icon.d.ts.map +1 -1
  11. package/dist/index.cjs +1 -1
  12. package/dist/index.d.ts +2 -0
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.mjs +2996 -2714
  15. package/dist/table-column/index.d.ts +99 -34
  16. package/dist/table-column/index.d.ts.map +1 -1
  17. package/dist/table-column/src/table-column.vue.d.ts +20 -1
  18. package/dist/table-column/src/table-column.vue.d.ts.map +1 -1
  19. package/dist/timeline/index.d.ts +134 -0
  20. package/dist/timeline/index.d.ts.map +1 -0
  21. package/dist/timeline/src/instance.d.ts +3 -0
  22. package/dist/timeline/src/instance.d.ts.map +1 -0
  23. package/dist/timeline/src/timeline.d.ts +98 -0
  24. package/dist/timeline/src/timeline.d.ts.map +1 -0
  25. package/dist/timeline/src/timeline.vue.d.ts +77 -0
  26. package/dist/timeline/src/timeline.vue.d.ts.map +1 -0
  27. package/dist/timeline-item/index.d.ts +260 -0
  28. package/dist/timeline-item/index.d.ts.map +1 -0
  29. package/dist/timeline-item/src/instance.d.ts +3 -0
  30. package/dist/timeline-item/src/instance.d.ts.map +1 -0
  31. package/dist/timeline-item/src/timeline-item.d.ts +161 -0
  32. package/dist/timeline-item/src/timeline-item.d.ts.map +1 -0
  33. package/dist/timeline-item/src/timeline-item.vue.d.ts +152 -0
  34. package/dist/timeline-item/src/timeline-item.vue.d.ts.map +1 -0
  35. package/package.json +4 -4
@@ -0,0 +1,260 @@
1
+ /**
2
+ * CpTimelineItem 赛博朋克风格时间轴子项
3
+ *
4
+ * 支持激活态、脉冲/发光/闪烁动画、空心节点、图标节点、丰富插槽。
5
+ *
6
+ * @example
7
+ * ```vue
8
+ * <CpTimelineItem timestamp="2024-01-01" type="primary" active animation="pulse">
9
+ * 系统初始化完成
10
+ * </CpTimelineItem>
11
+ * ```
12
+ *
13
+ * @slot default - 主内容区域
14
+ * @slot dot - 自定义节点
15
+ * @slot timestamp - 自定义时间戳
16
+ * @slot extra - 附加区域
17
+ * @slot connector - 自定义连线
18
+ */
19
+ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
20
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
21
+ readonly timestamp: {
22
+ readonly type: StringConstructor;
23
+ readonly default: "";
24
+ };
25
+ readonly placement: {
26
+ readonly type: import('vue').PropType<import('.').TimelineItemPlacement>;
27
+ readonly default: "bottom";
28
+ };
29
+ readonly type: {
30
+ readonly type: import('vue').PropType<import('.').TimelineItemType | "">;
31
+ readonly default: "";
32
+ };
33
+ readonly color: {
34
+ readonly type: StringConstructor;
35
+ readonly default: "";
36
+ };
37
+ readonly size: {
38
+ readonly type: import('vue').PropType<import('.').TimelineItemSize>;
39
+ readonly default: "md";
40
+ };
41
+ readonly hollow: {
42
+ readonly type: BooleanConstructor;
43
+ readonly default: false;
44
+ };
45
+ readonly hideTimestamp: {
46
+ readonly type: BooleanConstructor;
47
+ readonly default: false;
48
+ };
49
+ readonly icon: {
50
+ readonly type: import('vue').PropType<import('vue').Component>;
51
+ readonly default: undefined;
52
+ };
53
+ readonly active: {
54
+ readonly type: BooleanConstructor;
55
+ readonly default: false;
56
+ };
57
+ readonly animation: {
58
+ readonly type: import('vue').PropType<import('.').TimelineItemAnimation>;
59
+ readonly default: "none";
60
+ };
61
+ readonly duration: {
62
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
63
+ readonly default: 1500;
64
+ };
65
+ readonly intensity: {
66
+ readonly type: NumberConstructor;
67
+ readonly default: 1;
68
+ };
69
+ readonly lineStyle: {
70
+ readonly type: import('vue').PropType<import('.').TimelineItemLineStyle | "">;
71
+ readonly default: "";
72
+ };
73
+ readonly lineColor: {
74
+ readonly type: StringConstructor;
75
+ readonly default: "";
76
+ };
77
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
78
+ readonly size: import('.').TimelineItemSize;
79
+ readonly type: "" | import('.').TimelineItemType;
80
+ readonly color: string;
81
+ readonly icon: import('vue').Component;
82
+ readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
83
+ readonly animation: import('.').TimelineItemAnimation;
84
+ readonly active: boolean;
85
+ readonly intensity: number;
86
+ readonly placement: import('.').TimelineItemPlacement;
87
+ readonly lineStyle: "" | import('.').TimelineItemLineStyle;
88
+ readonly lineColor: string;
89
+ readonly timestamp: string;
90
+ readonly hollow: boolean;
91
+ readonly hideTimestamp: boolean;
92
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
93
+ P: {};
94
+ B: {};
95
+ D: {};
96
+ C: {};
97
+ M: {};
98
+ Defaults: {};
99
+ }, Readonly<import('vue').ExtractPropTypes<{
100
+ readonly timestamp: {
101
+ readonly type: StringConstructor;
102
+ readonly default: "";
103
+ };
104
+ readonly placement: {
105
+ readonly type: import('vue').PropType<import('.').TimelineItemPlacement>;
106
+ readonly default: "bottom";
107
+ };
108
+ readonly type: {
109
+ readonly type: import('vue').PropType<import('.').TimelineItemType | "">;
110
+ readonly default: "";
111
+ };
112
+ readonly color: {
113
+ readonly type: StringConstructor;
114
+ readonly default: "";
115
+ };
116
+ readonly size: {
117
+ readonly type: import('vue').PropType<import('.').TimelineItemSize>;
118
+ readonly default: "md";
119
+ };
120
+ readonly hollow: {
121
+ readonly type: BooleanConstructor;
122
+ readonly default: false;
123
+ };
124
+ readonly hideTimestamp: {
125
+ readonly type: BooleanConstructor;
126
+ readonly default: false;
127
+ };
128
+ readonly icon: {
129
+ readonly type: import('vue').PropType<import('vue').Component>;
130
+ readonly default: undefined;
131
+ };
132
+ readonly active: {
133
+ readonly type: BooleanConstructor;
134
+ readonly default: false;
135
+ };
136
+ readonly animation: {
137
+ readonly type: import('vue').PropType<import('.').TimelineItemAnimation>;
138
+ readonly default: "none";
139
+ };
140
+ readonly duration: {
141
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
142
+ readonly default: 1500;
143
+ };
144
+ readonly intensity: {
145
+ readonly type: NumberConstructor;
146
+ readonly default: 1;
147
+ };
148
+ readonly lineStyle: {
149
+ readonly type: import('vue').PropType<import('.').TimelineItemLineStyle | "">;
150
+ readonly default: "";
151
+ };
152
+ readonly lineColor: {
153
+ readonly type: StringConstructor;
154
+ readonly default: "";
155
+ };
156
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
157
+ readonly size: import('.').TimelineItemSize;
158
+ readonly type: "" | import('.').TimelineItemType;
159
+ readonly color: string;
160
+ readonly icon: import('vue').Component;
161
+ readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
162
+ readonly animation: import('.').TimelineItemAnimation;
163
+ readonly active: boolean;
164
+ readonly intensity: number;
165
+ readonly placement: import('.').TimelineItemPlacement;
166
+ readonly lineStyle: "" | import('.').TimelineItemLineStyle;
167
+ readonly lineColor: string;
168
+ readonly timestamp: string;
169
+ readonly hollow: boolean;
170
+ readonly hideTimestamp: boolean;
171
+ }>;
172
+ __isFragment?: never;
173
+ __isTeleport?: never;
174
+ __isSuspense?: never;
175
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
176
+ readonly timestamp: {
177
+ readonly type: StringConstructor;
178
+ readonly default: "";
179
+ };
180
+ readonly placement: {
181
+ readonly type: import('vue').PropType<import('.').TimelineItemPlacement>;
182
+ readonly default: "bottom";
183
+ };
184
+ readonly type: {
185
+ readonly type: import('vue').PropType<import('.').TimelineItemType | "">;
186
+ readonly default: "";
187
+ };
188
+ readonly color: {
189
+ readonly type: StringConstructor;
190
+ readonly default: "";
191
+ };
192
+ readonly size: {
193
+ readonly type: import('vue').PropType<import('.').TimelineItemSize>;
194
+ readonly default: "md";
195
+ };
196
+ readonly hollow: {
197
+ readonly type: BooleanConstructor;
198
+ readonly default: false;
199
+ };
200
+ readonly hideTimestamp: {
201
+ readonly type: BooleanConstructor;
202
+ readonly default: false;
203
+ };
204
+ readonly icon: {
205
+ readonly type: import('vue').PropType<import('vue').Component>;
206
+ readonly default: undefined;
207
+ };
208
+ readonly active: {
209
+ readonly type: BooleanConstructor;
210
+ readonly default: false;
211
+ };
212
+ readonly animation: {
213
+ readonly type: import('vue').PropType<import('.').TimelineItemAnimation>;
214
+ readonly default: "none";
215
+ };
216
+ readonly duration: {
217
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
218
+ readonly default: 1500;
219
+ };
220
+ readonly intensity: {
221
+ readonly type: NumberConstructor;
222
+ readonly default: 1;
223
+ };
224
+ readonly lineStyle: {
225
+ readonly type: import('vue').PropType<import('.').TimelineItemLineStyle | "">;
226
+ readonly default: "";
227
+ };
228
+ readonly lineColor: {
229
+ readonly type: StringConstructor;
230
+ readonly default: "";
231
+ };
232
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
233
+ readonly size: import('.').TimelineItemSize;
234
+ readonly type: "" | import('.').TimelineItemType;
235
+ readonly color: string;
236
+ readonly icon: import('vue').Component;
237
+ readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
238
+ readonly animation: import('.').TimelineItemAnimation;
239
+ readonly active: boolean;
240
+ readonly intensity: number;
241
+ readonly placement: import('.').TimelineItemPlacement;
242
+ readonly lineStyle: "" | import('.').TimelineItemLineStyle;
243
+ readonly lineColor: string;
244
+ readonly timestamp: string;
245
+ readonly hollow: boolean;
246
+ readonly hideTimestamp: boolean;
247
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
248
+ $slots: {
249
+ connector?(_: {}): any;
250
+ dot?(_: {}): any;
251
+ timestamp?(_: {}): any;
252
+ timestamp?(_: {}): any;
253
+ default?(_: {}): any;
254
+ extra?(_: {}): any;
255
+ };
256
+ })>;
257
+ export default CpTimelineItem;
258
+ export * from './src/timeline-item';
259
+ export type { TimelineItemInstance } from './src/instance';
260
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../timeline-item/index.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA4B,CAAA;AACvD,eAAe,cAAc,CAAA;AAE7B,cAAc,qBAAqB,CAAA;AACnC,YAAY,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { default as TimelineItem } from './timeline-item.vue';
2
+ export type TimelineItemInstance = InstanceType<typeof TimelineItem> & unknown;
3
+ //# sourceMappingURL=instance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"instance.d.ts","sourceRoot":"","sources":["../../../timeline-item/src/instance.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,qBAAqB,CAAA;AAEnD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,OAAO,YAAY,CAAC,GAAG,OAAO,CAAA"}
@@ -0,0 +1,161 @@
1
+ import { Component, ExtractPropTypes, PropType } from 'vue';
2
+ import { DurationValue } from '@cyberpunk-vue/hooks';
3
+ /**
4
+ * 时间轴节点颜色类型
5
+ */
6
+ export type TimelineItemType = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info';
7
+ /**
8
+ * 时间轴节点尺寸
9
+ */
10
+ export type TimelineItemSize = 'sm' | 'md' | 'lg';
11
+ /**
12
+ * 时间轴节点动画效果
13
+ * - `none` - 无动画(默认)
14
+ * - `pulse` - 脉冲扩散效果
15
+ * - `glow` - 发光呼吸效果
16
+ * - `blink` - 闪烁效果
17
+ */
18
+ export type TimelineItemAnimation = 'none' | 'pulse' | 'glow' | 'blink';
19
+ /**
20
+ * 时间戳位置
21
+ */
22
+ export type TimelineItemPlacement = 'top' | 'bottom';
23
+ /**
24
+ * 连线样式
25
+ */
26
+ export type TimelineItemLineStyle = 'solid' | 'dashed' | 'dotted';
27
+ /**
28
+ * CpTimelineItem 组件 Props 定义
29
+ *
30
+ * @description 赛博朋克风格时间轴子项组件,支持激活态、动画效果和丰富的插槽定制。
31
+ *
32
+ * @example
33
+ * ```vue
34
+ * <CpTimelineItem timestamp="2024-01-01" type="primary" active animation="pulse">
35
+ * 系统初始化完成
36
+ * </CpTimelineItem>
37
+ * ```
38
+ *
39
+ * @slots
40
+ * - `default` - 主内容区域
41
+ * - `dot` - 自定义节点(完全替换默认圆点)
42
+ * - `timestamp` - 自定义时间戳内容
43
+ * - `extra` - 内容下方附加区域
44
+ * - `connector` - 自定义连线
45
+ */
46
+ export declare const timelineItemProps: {
47
+ /**
48
+ * 时间戳文本
49
+ * @default ''
50
+ */
51
+ readonly timestamp: {
52
+ readonly type: StringConstructor;
53
+ readonly default: "";
54
+ };
55
+ /**
56
+ * 时间戳位置
57
+ * @default 'bottom'
58
+ */
59
+ readonly placement: {
60
+ readonly type: PropType<TimelineItemPlacement>;
61
+ readonly default: "bottom";
62
+ };
63
+ /**
64
+ * 颜色类型(空字符串时继承父级)
65
+ * @default ''
66
+ */
67
+ readonly type: {
68
+ readonly type: PropType<TimelineItemType | "">;
69
+ readonly default: "";
70
+ };
71
+ /**
72
+ * 自定义节点颜色
73
+ * @default ''
74
+ */
75
+ readonly color: {
76
+ readonly type: StringConstructor;
77
+ readonly default: "";
78
+ };
79
+ /**
80
+ * 节点尺寸
81
+ * @default 'md'
82
+ */
83
+ readonly size: {
84
+ readonly type: PropType<TimelineItemSize>;
85
+ readonly default: "md";
86
+ };
87
+ /**
88
+ * 空心节点(仅显示边框)
89
+ * @default false
90
+ */
91
+ readonly hollow: {
92
+ readonly type: BooleanConstructor;
93
+ readonly default: false;
94
+ };
95
+ /**
96
+ * 隐藏时间戳
97
+ * @default false
98
+ */
99
+ readonly hideTimestamp: {
100
+ readonly type: BooleanConstructor;
101
+ readonly default: false;
102
+ };
103
+ /**
104
+ * 自定义节点图标
105
+ */
106
+ readonly icon: {
107
+ readonly type: PropType<Component>;
108
+ readonly default: undefined;
109
+ };
110
+ /**
111
+ * 激活态(高亮发光)
112
+ * @default false
113
+ */
114
+ readonly active: {
115
+ readonly type: BooleanConstructor;
116
+ readonly default: false;
117
+ };
118
+ /**
119
+ * 节点动画效果
120
+ * @default 'none'
121
+ */
122
+ readonly animation: {
123
+ readonly type: PropType<TimelineItemAnimation>;
124
+ readonly default: "none";
125
+ };
126
+ /**
127
+ * 动画持续时间
128
+ * 数字默认毫秒 (ms),字符串可指定单位 (如 '1.5s' 或 '1500ms')
129
+ * @default 1500
130
+ */
131
+ readonly duration: {
132
+ readonly type: PropType<DurationValue>;
133
+ readonly default: 1500;
134
+ };
135
+ /**
136
+ * 动画激烈程度
137
+ * @default 1
138
+ */
139
+ readonly intensity: {
140
+ readonly type: NumberConstructor;
141
+ readonly default: 1;
142
+ };
143
+ /**
144
+ * 该项连线样式(覆盖全局)
145
+ * @default ''
146
+ */
147
+ readonly lineStyle: {
148
+ readonly type: PropType<TimelineItemLineStyle | "">;
149
+ readonly default: "";
150
+ };
151
+ /**
152
+ * 该项连线颜色(覆盖全局)
153
+ * @default ''
154
+ */
155
+ readonly lineColor: {
156
+ readonly type: StringConstructor;
157
+ readonly default: "";
158
+ };
159
+ };
160
+ export type TimelineItemProps = ExtractPropTypes<typeof timelineItemProps>;
161
+ //# sourceMappingURL=timeline-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeline-item.d.ts","sourceRoot":"","sources":["../../../timeline-item/src/timeline-item.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAChE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AAEzD;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;AAE/F;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAEjD;;;;;;GAMG;AACH,MAAM,MAAM,qBAAqB,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,CAAA;AAEvE;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,KAAK,GAAG,QAAQ,CAAA;AAEpD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAA;AAEjE;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;;OAGG;;;;;IAKH;;;OAGG;;uBAEe,QAAQ,CAAC,qBAAqB,CAAC;;;IAGjD;;;OAGG;;uBAEe,QAAQ,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;IAGjD;;;OAGG;;;;;IAKH;;;OAGG;;uBAEe,QAAQ,CAAC,gBAAgB,CAAC;;;IAG5C;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;OAEG;;uBAE2B,QAAQ,CAAC,SAAS,CAAC;;;IAGjD;;;OAGG;;;;;IAKH;;;OAGG;;uBAEe,QAAQ,CAAC,qBAAqB,CAAC;;;IAGjD;;;;OAIG;;uBAEyB,QAAQ,CAAC,aAAa,CAAC;;;IAGnD;;;OAGG;;;;;IAKH;;;OAGG;;uBAEe,QAAQ,CAAC,qBAAqB,GAAG,EAAE,CAAC;;;IAGtD;;;OAGG;;;;;CAKK,CAAA;AAEV,MAAM,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
@@ -0,0 +1,152 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ connector?(_: {}): any;
5
+ dot?(_: {}): any;
6
+ timestamp?(_: {}): any;
7
+ timestamp?(_: {}): any;
8
+ default?(_: {}): any;
9
+ extra?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: HTMLLIElement;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16
+ readonly timestamp: {
17
+ readonly type: StringConstructor;
18
+ readonly default: "";
19
+ };
20
+ readonly placement: {
21
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemPlacement>;
22
+ readonly default: "bottom";
23
+ };
24
+ readonly type: {
25
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemType | "">;
26
+ readonly default: "";
27
+ };
28
+ readonly color: {
29
+ readonly type: StringConstructor;
30
+ readonly default: "";
31
+ };
32
+ readonly size: {
33
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemSize>;
34
+ readonly default: "md";
35
+ };
36
+ readonly hollow: {
37
+ readonly type: BooleanConstructor;
38
+ readonly default: false;
39
+ };
40
+ readonly hideTimestamp: {
41
+ readonly type: BooleanConstructor;
42
+ readonly default: false;
43
+ };
44
+ readonly icon: {
45
+ readonly type: import('vue').PropType<import('vue').Component>;
46
+ readonly default: undefined;
47
+ };
48
+ readonly active: {
49
+ readonly type: BooleanConstructor;
50
+ readonly default: false;
51
+ };
52
+ readonly animation: {
53
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemAnimation>;
54
+ readonly default: "none";
55
+ };
56
+ readonly duration: {
57
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
58
+ readonly default: 1500;
59
+ };
60
+ readonly intensity: {
61
+ readonly type: NumberConstructor;
62
+ readonly default: 1;
63
+ };
64
+ readonly lineStyle: {
65
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemLineStyle | "">;
66
+ readonly default: "";
67
+ };
68
+ readonly lineColor: {
69
+ readonly type: StringConstructor;
70
+ readonly default: "";
71
+ };
72
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
73
+ readonly timestamp: {
74
+ readonly type: StringConstructor;
75
+ readonly default: "";
76
+ };
77
+ readonly placement: {
78
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemPlacement>;
79
+ readonly default: "bottom";
80
+ };
81
+ readonly type: {
82
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemType | "">;
83
+ readonly default: "";
84
+ };
85
+ readonly color: {
86
+ readonly type: StringConstructor;
87
+ readonly default: "";
88
+ };
89
+ readonly size: {
90
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemSize>;
91
+ readonly default: "md";
92
+ };
93
+ readonly hollow: {
94
+ readonly type: BooleanConstructor;
95
+ readonly default: false;
96
+ };
97
+ readonly hideTimestamp: {
98
+ readonly type: BooleanConstructor;
99
+ readonly default: false;
100
+ };
101
+ readonly icon: {
102
+ readonly type: import('vue').PropType<import('vue').Component>;
103
+ readonly default: undefined;
104
+ };
105
+ readonly active: {
106
+ readonly type: BooleanConstructor;
107
+ readonly default: false;
108
+ };
109
+ readonly animation: {
110
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemAnimation>;
111
+ readonly default: "none";
112
+ };
113
+ readonly duration: {
114
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
115
+ readonly default: 1500;
116
+ };
117
+ readonly intensity: {
118
+ readonly type: NumberConstructor;
119
+ readonly default: 1;
120
+ };
121
+ readonly lineStyle: {
122
+ readonly type: import('vue').PropType<import('./timeline-item').TimelineItemLineStyle | "">;
123
+ readonly default: "";
124
+ };
125
+ readonly lineColor: {
126
+ readonly type: StringConstructor;
127
+ readonly default: "";
128
+ };
129
+ }>> & Readonly<{}>, {
130
+ readonly size: import('./timeline-item').TimelineItemSize;
131
+ readonly type: "" | import('./timeline-item').TimelineItemType;
132
+ readonly color: string;
133
+ readonly icon: import('vue').Component;
134
+ readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
135
+ readonly animation: import('./timeline-item').TimelineItemAnimation;
136
+ readonly active: boolean;
137
+ readonly intensity: number;
138
+ readonly placement: import('./timeline-item').TimelineItemPlacement;
139
+ readonly lineStyle: "" | import('./timeline-item').TimelineItemLineStyle;
140
+ readonly lineColor: string;
141
+ readonly timestamp: string;
142
+ readonly hollow: boolean;
143
+ readonly hideTimestamp: boolean;
144
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
145
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
146
+ export default _default;
147
+ type __VLS_WithTemplateSlots<T, S> = T & {
148
+ new (): {
149
+ $slots: S;
150
+ };
151
+ };
152
+ //# sourceMappingURL=timeline-item.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeline-item.vue.d.ts","sourceRoot":"","sources":["../../../timeline-item/src/timeline-item.vue"],"names":[],"mappings":"AA2OA,iBAAS,cAAc;WAqGT,OAAO,IAA6B;;2BAfnB,GAAG;qBACT,GAAG;2BACG,GAAG;2BAGF,GAAG;yBAFN,GAAG;uBACJ,GAAG;;;;EAgB9B;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sFAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyberpunk-vue/components",
3
- "version": "1.7.14",
3
+ "version": "1.8.2",
4
4
  "description": "Cyberpunk Vue components - A futuristic Vue 3 component library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -23,9 +23,9 @@
23
23
  "vue": "^3.5.0"
24
24
  },
25
25
  "dependencies": {
26
- "@cyberpunk-vue/constants": "1.7.14",
27
- "@cyberpunk-vue/theme-chalk": "1.7.14",
28
- "@cyberpunk-vue/hooks": "1.7.14"
26
+ "@cyberpunk-vue/constants": "1.8.2",
27
+ "@cyberpunk-vue/theme-chalk": "1.8.2",
28
+ "@cyberpunk-vue/hooks": "1.8.2"
29
29
  },
30
30
  "author": "Juxest",
31
31
  "license": "MIT",