@cyberpunk-vue/components 1.9.1 → 1.9.3

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 (80) hide show
  1. package/dist/avatar/index.d.ts +6 -6
  2. package/dist/avatar/index.d.ts.map +1 -1
  3. package/dist/avatar/src/avatar.d.ts +3 -2
  4. package/dist/avatar/src/avatar.d.ts.map +1 -1
  5. package/dist/avatar/src/avatar.vue.d.ts +3 -3
  6. package/dist/avatar/src/avatar.vue.d.ts.map +1 -1
  7. package/dist/badge/index.d.ts +3 -3
  8. package/dist/badge/src/badge.vue.d.ts +1 -1
  9. package/dist/breadcrumb/index.d.ts +3 -3
  10. package/dist/breadcrumb/src/breadcrumb.vue.d.ts +1 -1
  11. package/dist/button/index.d.ts +21 -21
  12. package/dist/button/src/button.d.ts +4 -3
  13. package/dist/button/src/button.d.ts.map +1 -1
  14. package/dist/button/src/button.vue.d.ts +10 -10
  15. package/dist/card/index.d.ts +3 -3
  16. package/dist/card/src/card.vue.d.ts +1 -1
  17. package/dist/checkbox/index.d.ts +3 -3
  18. package/dist/checkbox/src/checkbox.vue.d.ts +1 -1
  19. package/dist/dialog/index.d.ts +3 -3
  20. package/dist/dialog/src/dialog.vue.d.ts +1 -1
  21. package/dist/divider/index.d.ts +3 -3
  22. package/dist/divider/src/divider.vue.d.ts +1 -1
  23. package/dist/dropdown/index.d.ts +3 -3
  24. package/dist/dropdown/src/dropdown.vue.d.ts +1 -1
  25. package/dist/empty/index.d.ts +6 -6
  26. package/dist/empty/src/empty.d.ts +3 -2
  27. package/dist/empty/src/empty.d.ts.map +1 -1
  28. package/dist/empty/src/empty.vue.d.ts +3 -3
  29. package/dist/icon/index.d.ts +6 -6
  30. package/dist/icon/src/icon.vue.d.ts +2 -2
  31. package/dist/index.cjs +1 -1
  32. package/dist/index.mjs +306 -306
  33. package/dist/input/index.d.ts +3 -3
  34. package/dist/input/src/input.vue.d.ts +1 -1
  35. package/dist/input-number/index.d.ts +1 -1
  36. package/dist/input-number/src/input-number.vue.d.ts +1 -1
  37. package/dist/loading/index.d.ts +1 -1
  38. package/dist/loading/src/loading.vue.d.ts +1 -1
  39. package/dist/menu/index.d.ts +3 -3
  40. package/dist/menu/src/menu.vue.d.ts +1 -1
  41. package/dist/menu-item/index.d.ts +3 -3
  42. package/dist/menu-item/src/menu-item.d.ts.map +1 -1
  43. package/dist/menu-item/src/menu-item.vue.d.ts +1 -1
  44. package/dist/menu-nav/index.d.ts +1 -1
  45. package/dist/menu-nav/src/menu-nav.vue.d.ts +1 -1
  46. package/dist/notification/index.d.ts +3 -3
  47. package/dist/notification/src/notification.vue.d.ts +1 -1
  48. package/dist/pagination/index.d.ts +3 -3
  49. package/dist/pagination/src/pagination.vue.d.ts +1 -1
  50. package/dist/popover/index.d.ts +379 -2
  51. package/dist/popover/index.d.ts.map +1 -1
  52. package/dist/popover/src/popover.vue.d.ts +1 -1
  53. package/dist/progress/index.d.ts +3 -3
  54. package/dist/progress/src/progress.vue.d.ts +1 -1
  55. package/dist/radio/index.d.ts +3 -3
  56. package/dist/radio/src/radio.vue.d.ts +1 -1
  57. package/dist/segmented/index.d.ts +1 -1
  58. package/dist/segmented/src/segmented.vue.d.ts +1 -1
  59. package/dist/slider/index.d.ts +1 -1
  60. package/dist/slider/src/slider.vue.d.ts +1 -1
  61. package/dist/sub-menu/index.d.ts +3 -3
  62. package/dist/sub-menu/src/sub-menu.d.ts.map +1 -1
  63. package/dist/sub-menu/src/sub-menu.vue.d.ts +1 -1
  64. package/dist/switch/index.d.ts +1 -1
  65. package/dist/switch/src/switch.vue.d.ts +1 -1
  66. package/dist/table/index.d.ts +3 -3
  67. package/dist/table/src/table.vue.d.ts +1 -1
  68. package/dist/tag/index.d.ts +3 -3
  69. package/dist/tag/src/tag.vue.d.ts +1 -1
  70. package/dist/textarea/index.d.ts +1 -1
  71. package/dist/textarea/src/textarea.vue.d.ts +1 -1
  72. package/dist/timeline-item/index.d.ts +6 -6
  73. package/dist/timeline-item/src/timeline-item.d.ts +3 -2
  74. package/dist/timeline-item/src/timeline-item.d.ts.map +1 -1
  75. package/dist/timeline-item/src/timeline-item.vue.d.ts +3 -3
  76. package/dist/upload/index.d.ts +9 -9
  77. package/dist/upload/src/upload.d.ts +2 -1
  78. package/dist/upload/src/upload.d.ts.map +1 -1
  79. package/dist/upload/src/upload.vue.d.ts +4 -4
  80. package/package.json +4 -4
@@ -202,9 +202,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
202
202
  }>, {
203
203
  readonly width: string | number;
204
204
  readonly type: import('./popover').PopoverType;
205
+ readonly color: string;
205
206
  readonly variant: import('./popover').PopoverVariant;
206
207
  readonly disabled: boolean;
207
- readonly color: string;
208
208
  readonly shape: import('./popover').PopoverShape;
209
209
  readonly title: string;
210
210
  readonly content: string;
@@ -115,8 +115,8 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
115
115
  readonly width: number;
116
116
  readonly format: (percentage: number) => string;
117
117
  readonly type: import('.').ProgressType;
118
- readonly loading: boolean;
119
118
  readonly color: string | string[] | ((percentage: number) => string);
119
+ readonly loading: boolean;
120
120
  readonly shape: import('.').ProgressShape;
121
121
  readonly textColor: string;
122
122
  readonly strokeWidth: number;
@@ -240,8 +240,8 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
240
240
  readonly width: number;
241
241
  readonly format: (percentage: number) => string;
242
242
  readonly type: import('.').ProgressType;
243
- readonly loading: boolean;
244
243
  readonly color: string | string[] | ((percentage: number) => string);
244
+ readonly loading: boolean;
245
245
  readonly shape: import('.').ProgressShape;
246
246
  readonly textColor: string;
247
247
  readonly strokeWidth: number;
@@ -362,8 +362,8 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
362
362
  readonly width: number;
363
363
  readonly format: (percentage: number) => string;
364
364
  readonly type: import('.').ProgressType;
365
- readonly loading: boolean;
366
365
  readonly color: string | string[] | ((percentage: number) => string);
366
+ readonly loading: boolean;
367
367
  readonly shape: import('.').ProgressShape;
368
368
  readonly textColor: string;
369
369
  readonly strokeWidth: number;
@@ -203,8 +203,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
203
203
  readonly width: number;
204
204
  readonly format: (percentage: number) => string;
205
205
  readonly type: import('./progress').ProgressType;
206
- readonly loading: boolean;
207
206
  readonly color: string | string[] | ((percentage: number) => string);
207
+ readonly loading: boolean;
208
208
  readonly shape: import('./progress').ProgressShape;
209
209
  readonly textColor: string;
210
210
  readonly strokeWidth: number;
@@ -70,8 +70,8 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
70
70
  readonly name: string;
71
71
  readonly value: import('.').RadioValueType;
72
72
  readonly type: import('.').RadioType;
73
- readonly disabled: boolean;
74
73
  readonly color: string;
74
+ readonly disabled: boolean;
75
75
  readonly label: string | number;
76
76
  readonly modelValue: import('.').RadioValueType;
77
77
  readonly border: boolean;
@@ -142,8 +142,8 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
142
142
  readonly name: string;
143
143
  readonly value: import('.').RadioValueType;
144
144
  readonly type: import('.').RadioType;
145
- readonly disabled: boolean;
146
145
  readonly color: string;
146
+ readonly disabled: boolean;
147
147
  readonly label: string | number;
148
148
  readonly modelValue: import('.').RadioValueType;
149
149
  readonly border: boolean;
@@ -212,8 +212,8 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
212
212
  readonly name: string;
213
213
  readonly value: import('.').RadioValueType;
214
214
  readonly type: import('.').RadioType;
215
- readonly disabled: boolean;
216
215
  readonly color: string;
216
+ readonly disabled: boolean;
217
217
  readonly label: string | number;
218
218
  readonly modelValue: import('.').RadioValueType;
219
219
  readonly border: boolean;
@@ -116,8 +116,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
116
116
  readonly name: string;
117
117
  readonly value: RadioValueType;
118
118
  readonly type: import('./radio').RadioType;
119
- readonly disabled: boolean;
120
119
  readonly color: string;
120
+ readonly disabled: boolean;
121
121
  readonly label: string | number;
122
122
  readonly modelValue: RadioValueType;
123
123
  readonly border: boolean;
@@ -95,10 +95,10 @@ export declare const CpSegmented: import('../utils').SFCWithInstall<import('vue'
95
95
  }>, {
96
96
  readonly size: import('@cyberpunk-vue/hooks').Size;
97
97
  readonly type: import('.').SegmentedType;
98
+ readonly color: string;
98
99
  readonly variant: import('.').SegmentedVariant;
99
100
  readonly disabled: boolean;
100
101
  readonly block: boolean;
101
- readonly color: string;
102
102
  readonly shape: import('.').SegmentedShape;
103
103
  readonly modelValue: import('.').SegmentedValueType;
104
104
  readonly options: (string | number | import('.').SegmentedOption)[];
@@ -85,10 +85,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
85
85
  }>, {
86
86
  readonly size: import('@cyberpunk-vue/hooks').Size;
87
87
  readonly type: import('./segmented').SegmentedType;
88
+ readonly color: string;
88
89
  readonly variant: import('./segmented').SegmentedVariant;
89
90
  readonly disabled: boolean;
90
91
  readonly block: boolean;
91
- readonly color: string;
92
92
  readonly shape: import('./segmented').SegmentedShape;
93
93
  readonly modelValue: SegmentedValueType;
94
94
  readonly options: (string | number | SegmentedOption)[];
@@ -147,8 +147,8 @@ export declare const CpSlider: import('../utils').SFCWithInstall<import('vue').D
147
147
  }>, {
148
148
  readonly size: import('@cyberpunk-vue/hooks').Size;
149
149
  readonly height: string;
150
- readonly disabled: boolean;
151
150
  readonly color: string;
151
+ readonly disabled: boolean;
152
152
  readonly shape: import('.').SliderShape;
153
153
  readonly modelValue: number | [number, number];
154
154
  readonly range: boolean;
@@ -133,8 +133,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
133
133
  }>, {
134
134
  readonly size: import('@cyberpunk-vue/hooks').Size;
135
135
  readonly height: string;
136
- readonly disabled: boolean;
137
136
  readonly color: string;
137
+ readonly disabled: boolean;
138
138
  readonly shape: import('./slider').SliderShape;
139
139
  readonly modelValue: number | [number, number];
140
140
  readonly range: boolean;
@@ -28,8 +28,8 @@ export declare const CpSubMenu: import('../utils').SFCWithInstall<{
28
28
  readonly default: undefined;
29
29
  };
30
30
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
31
- readonly disabled: boolean;
32
31
  readonly icon: import('..').IconValue;
32
+ readonly disabled: boolean;
33
33
  readonly title: string;
34
34
  readonly index: string;
35
35
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
@@ -57,8 +57,8 @@ export declare const CpSubMenu: import('../utils').SFCWithInstall<{
57
57
  readonly default: undefined;
58
58
  };
59
59
  }>> & Readonly<{}>, {}, {}, {}, {}, {
60
- readonly disabled: boolean;
61
60
  readonly icon: import('..').IconValue;
61
+ readonly disabled: boolean;
62
62
  readonly title: string;
63
63
  readonly index: string;
64
64
  }>;
@@ -83,8 +83,8 @@ export declare const CpSubMenu: import('../utils').SFCWithInstall<{
83
83
  readonly default: undefined;
84
84
  };
85
85
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
86
- readonly disabled: boolean;
87
86
  readonly icon: import('..').IconValue;
87
+ readonly disabled: boolean;
88
88
  readonly title: string;
89
89
  readonly index: string;
90
90
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -1 +1 @@
1
- {"version":3,"file":"sub-menu.d.ts","sourceRoot":"","sources":["../../../sub-menu/src/sub-menu.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAA;AAExE;;GAEG;AACH,eAAO,MAAM,YAAY;IACvB;;OAEG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;uBAEyB,QAAQ,CAAC,SAAS,CAAC;;;IAG/C;;;OAGG;;;;;CAKK,CAAA;AAEV,MAAM,MAAM,YAAY,GAAG,gBAAgB,CAAC,OAAO,YAAY,CAAC,CAAA"}
1
+ {"version":3,"file":"sub-menu.d.ts","sourceRoot":"","sources":["../../../sub-menu/src/sub-menu.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAA;AAExE;;GAEG;AACH,eAAO,MAAM,YAAY;IACvB;;OAEG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;uBAEmC,QAAQ,CAAC,SAAS,CAAC;;;IAGzD;;;OAGG;;;;;CAKK,CAAA;AAEV,MAAM,MAAM,YAAY,GAAG,gBAAgB,CAAC,OAAO,YAAY,CAAC,CAAA"}
@@ -44,8 +44,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
44
44
  readonly default: undefined;
45
45
  };
46
46
  }>> & Readonly<{}>, {
47
- readonly disabled: boolean;
48
47
  readonly icon: import('../../icon').IconValue;
48
+ readonly disabled: boolean;
49
49
  readonly title: string;
50
50
  readonly index: string;
51
51
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
@@ -130,9 +130,9 @@ export declare const CpSwitch: import('../utils').SFCWithInstall<import('vue').D
130
130
  readonly name: string;
131
131
  readonly width: string | number;
132
132
  readonly type: import('.').SwitchType;
133
+ readonly color: string;
133
134
  readonly disabled: boolean;
134
135
  readonly loading: boolean;
135
- readonly color: string;
136
136
  readonly modelValue: boolean;
137
137
  readonly inactiveColor: string;
138
138
  readonly fitText: boolean;
@@ -117,9 +117,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
117
117
  readonly name: string;
118
118
  readonly width: string | number;
119
119
  readonly type: import('./switch').SwitchType;
120
+ readonly color: string;
120
121
  readonly disabled: boolean;
121
122
  readonly loading: boolean;
122
- readonly color: string;
123
123
  readonly modelValue: boolean;
124
124
  readonly inactiveColor: string;
125
125
  readonly fitText: boolean;
@@ -115,9 +115,9 @@ export declare const CpTable: import('../utils').SFCWithInstall<{
115
115
  readonly size: import('@cyberpunk-vue/hooks').Size;
116
116
  readonly data: any[];
117
117
  readonly type: import('.').TableType;
118
+ readonly color: string;
118
119
  readonly disabled: boolean;
119
120
  readonly loading: boolean;
120
- readonly color: string;
121
121
  readonly border: boolean;
122
122
  readonly loadingText: string;
123
123
  readonly showHeader: boolean;
@@ -229,9 +229,9 @@ export declare const CpTable: import('../utils').SFCWithInstall<{
229
229
  readonly size: import('@cyberpunk-vue/hooks').Size;
230
230
  readonly data: any[];
231
231
  readonly type: import('.').TableType;
232
+ readonly color: string;
232
233
  readonly disabled: boolean;
233
234
  readonly loading: boolean;
234
- readonly color: string;
235
235
  readonly border: boolean;
236
236
  readonly loadingText: string;
237
237
  readonly showHeader: boolean;
@@ -348,9 +348,9 @@ export declare const CpTable: import('../utils').SFCWithInstall<{
348
348
  readonly size: import('@cyberpunk-vue/hooks').Size;
349
349
  readonly data: any[];
350
350
  readonly type: import('.').TableType;
351
+ readonly color: string;
351
352
  readonly disabled: boolean;
352
353
  readonly loading: boolean;
353
- readonly color: string;
354
354
  readonly border: boolean;
355
355
  readonly loadingText: string;
356
356
  readonly showHeader: boolean;
@@ -193,9 +193,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
193
193
  readonly size: import('@cyberpunk-vue/hooks').Size;
194
194
  readonly data: any[];
195
195
  readonly type: import('./table').TableType;
196
+ readonly color: string;
196
197
  readonly disabled: boolean;
197
198
  readonly loading: boolean;
198
- readonly color: string;
199
199
  readonly border: boolean;
200
200
  readonly loadingText: string;
201
201
  readonly showHeader: boolean;
@@ -64,9 +64,9 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
64
64
  }, import('vue').PublicProps, {
65
65
  readonly size: import('@cyberpunk-vue/hooks').Size;
66
66
  readonly type: import('.').TagType;
67
+ readonly color: string;
67
68
  readonly variant: import('.').TagVariant;
68
69
  readonly disabled: boolean;
69
- readonly color: string;
70
70
  readonly shape: import('.').TagShape;
71
71
  readonly dashed: boolean;
72
72
  readonly closable: boolean;
@@ -127,9 +127,9 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
127
127
  }>, {}, {}, {}, {}, {
128
128
  readonly size: import('@cyberpunk-vue/hooks').Size;
129
129
  readonly type: import('.').TagType;
130
+ readonly color: string;
130
131
  readonly variant: import('.').TagVariant;
131
132
  readonly disabled: boolean;
132
- readonly color: string;
133
133
  readonly shape: import('.').TagShape;
134
134
  readonly dashed: boolean;
135
135
  readonly closable: boolean;
@@ -191,9 +191,9 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
191
191
  }, string, {
192
192
  readonly size: import('@cyberpunk-vue/hooks').Size;
193
193
  readonly type: import('.').TagType;
194
+ readonly color: string;
194
195
  readonly variant: import('.').TagVariant;
195
196
  readonly disabled: boolean;
196
- readonly color: string;
197
197
  readonly shape: import('.').TagShape;
198
198
  readonly dashed: boolean;
199
199
  readonly closable: boolean;
@@ -102,9 +102,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
102
102
  }>, {
103
103
  readonly size: import('@cyberpunk-vue/hooks').Size;
104
104
  readonly type: import('./tag').TagType;
105
+ readonly color: string;
105
106
  readonly variant: import('./tag').TagVariant;
106
107
  readonly disabled: boolean;
107
- readonly color: string;
108
108
  readonly shape: import('./tag').TagShape;
109
109
  readonly dashed: boolean;
110
110
  readonly closable: boolean;
@@ -120,9 +120,9 @@ export declare const CpTextarea: import('../utils').SFCWithInstall<import('vue')
120
120
  onFocus?: ((event: FocusEvent) => any) | undefined;
121
121
  }>, {
122
122
  readonly size: import('@cyberpunk-vue/hooks').Size;
123
+ readonly color: string;
123
124
  readonly variant: import('.').TextareaVariant;
124
125
  readonly disabled: boolean;
125
- readonly color: string;
126
126
  readonly textColor: string;
127
127
  readonly placeholder: string;
128
128
  readonly modelValue: string;
@@ -136,9 +136,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
136
136
  onFocus?: ((event: FocusEvent) => any) | undefined;
137
137
  }>, {
138
138
  readonly size: import('@cyberpunk-vue/hooks').Size;
139
+ readonly color: string;
139
140
  readonly variant: import('./textarea').TextareaVariant;
140
141
  readonly disabled: boolean;
141
- readonly color: string;
142
142
  readonly textColor: string;
143
143
  readonly placeholder: string;
144
144
  readonly modelValue: string;
@@ -47,7 +47,7 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
47
47
  readonly default: false;
48
48
  };
49
49
  readonly icon: {
50
- readonly type: import('vue').PropType<import('vue').Component>;
50
+ readonly type: import('vue').PropType<import('..').IconValue>;
51
51
  readonly default: undefined;
52
52
  };
53
53
  readonly active: {
@@ -76,9 +76,9 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
76
76
  };
77
77
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
78
78
  readonly size: import('.').TimelineItemSize;
79
+ readonly icon: import('..').IconValue;
79
80
  readonly type: "" | import('.').TimelineItemType;
80
81
  readonly color: string;
81
- readonly icon: import('vue').Component;
82
82
  readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
83
83
  readonly animation: import('.').TimelineItemAnimation;
84
84
  readonly active: boolean;
@@ -126,7 +126,7 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
126
126
  readonly default: false;
127
127
  };
128
128
  readonly icon: {
129
- readonly type: import('vue').PropType<import('vue').Component>;
129
+ readonly type: import('vue').PropType<import('..').IconValue>;
130
130
  readonly default: undefined;
131
131
  };
132
132
  readonly active: {
@@ -155,9 +155,9 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
155
155
  };
156
156
  }>> & Readonly<{}>, {}, {}, {}, {}, {
157
157
  readonly size: import('.').TimelineItemSize;
158
+ readonly icon: import('..').IconValue;
158
159
  readonly type: "" | import('.').TimelineItemType;
159
160
  readonly color: string;
160
- readonly icon: import('vue').Component;
161
161
  readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
162
162
  readonly animation: import('.').TimelineItemAnimation;
163
163
  readonly active: boolean;
@@ -202,7 +202,7 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
202
202
  readonly default: false;
203
203
  };
204
204
  readonly icon: {
205
- readonly type: import('vue').PropType<import('vue').Component>;
205
+ readonly type: import('vue').PropType<import('..').IconValue>;
206
206
  readonly default: undefined;
207
207
  };
208
208
  readonly active: {
@@ -231,9 +231,9 @@ export declare const CpTimelineItem: import('../utils').SFCWithInstall<{
231
231
  };
232
232
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
233
233
  readonly size: import('.').TimelineItemSize;
234
+ readonly icon: import('..').IconValue;
234
235
  readonly type: "" | import('.').TimelineItemType;
235
236
  readonly color: string;
236
- readonly icon: import('vue').Component;
237
237
  readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
238
238
  readonly animation: import('.').TimelineItemAnimation;
239
239
  readonly active: boolean;
@@ -1,4 +1,5 @@
1
- import { Component, ExtractPropTypes, PropType } from 'vue';
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ import { IconValue } from '../../icon/src/icon';
2
3
  import { DurationValue } from '@cyberpunk-vue/hooks';
3
4
  /**
4
5
  * 时间轴节点颜色类型
@@ -104,7 +105,7 @@ export declare const timelineItemProps: {
104
105
  * 自定义节点图标
105
106
  */
106
107
  readonly icon: {
107
- readonly type: PropType<Component>;
108
+ readonly type: PropType<IconValue>;
108
109
  readonly default: undefined;
109
110
  };
110
111
  /**
@@ -1 +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"}
1
+ {"version":3,"file":"timeline-item.d.ts","sourceRoot":"","sources":["../../../timeline-item/src/timeline-item.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAA;AACxE,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;;uBAEmC,QAAQ,CAAC,SAAS,CAAC;;;IAGzD;;;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"}
@@ -42,7 +42,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
42
42
  readonly default: false;
43
43
  };
44
44
  readonly icon: {
45
- readonly type: import('vue').PropType<import('vue').Component>;
45
+ readonly type: import('vue').PropType<import('../../icon').IconValue>;
46
46
  readonly default: undefined;
47
47
  };
48
48
  readonly active: {
@@ -99,7 +99,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
99
99
  readonly default: false;
100
100
  };
101
101
  readonly icon: {
102
- readonly type: import('vue').PropType<import('vue').Component>;
102
+ readonly type: import('vue').PropType<import('../../icon').IconValue>;
103
103
  readonly default: undefined;
104
104
  };
105
105
  readonly active: {
@@ -128,9 +128,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
128
128
  };
129
129
  }>> & Readonly<{}>, {
130
130
  readonly size: import('./timeline-item').TimelineItemSize;
131
+ readonly icon: import('../../icon').IconValue;
131
132
  readonly type: "" | import('./timeline-item').TimelineItemType;
132
133
  readonly color: string;
133
- readonly icon: import('vue').Component;
134
134
  readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
135
135
  readonly animation: import('./timeline-item').TimelineItemAnimation;
136
136
  readonly active: boolean;
@@ -125,7 +125,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
125
125
  readonly default: undefined;
126
126
  };
127
127
  readonly placeholderIcon: {
128
- readonly type: import('vue').PropType<object>;
128
+ readonly type: import('vue').PropType<import('..').IconValue>;
129
129
  readonly default: undefined;
130
130
  };
131
131
  readonly dimmed: {
@@ -158,10 +158,10 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
158
158
  readonly data: Record<string, string>;
159
159
  readonly name: string;
160
160
  readonly type: import('.').UploadType;
161
+ readonly color: string;
161
162
  readonly variant: import('.').UploadVariant;
162
163
  readonly dimmed: boolean;
163
164
  readonly disabled: boolean;
164
- readonly color: string;
165
165
  readonly shape: import('.').UploadShape;
166
166
  readonly placeholder: string;
167
167
  readonly modelValue: import('.').UploadFile[];
@@ -183,7 +183,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
183
183
  readonly beforeUpload: (file: File) => boolean | Promise<boolean>;
184
184
  readonly onExceed: (files: File[], fileList: import('.').UploadFile[]) => void;
185
185
  readonly inlinePreview: boolean;
186
- readonly placeholderIcon: object;
186
+ readonly placeholderIcon: import('..').IconValue;
187
187
  readonly successType: string;
188
188
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
189
189
  inputRef: HTMLInputElement;
@@ -308,7 +308,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
308
308
  readonly default: undefined;
309
309
  };
310
310
  readonly placeholderIcon: {
311
- readonly type: import('vue').PropType<object>;
311
+ readonly type: import('vue').PropType<import('..').IconValue>;
312
312
  readonly default: undefined;
313
313
  };
314
314
  readonly dimmed: {
@@ -334,10 +334,10 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
334
334
  readonly data: Record<string, string>;
335
335
  readonly name: string;
336
336
  readonly type: import('.').UploadType;
337
+ readonly color: string;
337
338
  readonly variant: import('.').UploadVariant;
338
339
  readonly dimmed: boolean;
339
340
  readonly disabled: boolean;
340
- readonly color: string;
341
341
  readonly shape: import('.').UploadShape;
342
342
  readonly placeholder: string;
343
343
  readonly modelValue: import('.').UploadFile[];
@@ -359,7 +359,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
359
359
  readonly beforeUpload: (file: File) => boolean | Promise<boolean>;
360
360
  readonly onExceed: (files: File[], fileList: import('.').UploadFile[]) => void;
361
361
  readonly inlinePreview: boolean;
362
- readonly placeholderIcon: object;
362
+ readonly placeholderIcon: import('..').IconValue;
363
363
  readonly successType: string;
364
364
  }>;
365
365
  __isFragment?: never;
@@ -479,7 +479,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
479
479
  readonly default: undefined;
480
480
  };
481
481
  readonly placeholderIcon: {
482
- readonly type: import('vue').PropType<object>;
482
+ readonly type: import('vue').PropType<import('..').IconValue>;
483
483
  readonly default: undefined;
484
484
  };
485
485
  readonly dimmed: {
@@ -512,10 +512,10 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
512
512
  readonly data: Record<string, string>;
513
513
  readonly name: string;
514
514
  readonly type: import('.').UploadType;
515
+ readonly color: string;
515
516
  readonly variant: import('.').UploadVariant;
516
517
  readonly dimmed: boolean;
517
518
  readonly disabled: boolean;
518
- readonly color: string;
519
519
  readonly shape: import('.').UploadShape;
520
520
  readonly placeholder: string;
521
521
  readonly modelValue: import('.').UploadFile[];
@@ -537,7 +537,7 @@ export declare const CpUpload: import('../utils').SFCWithInstall<{
537
537
  readonly beforeUpload: (file: File) => boolean | Promise<boolean>;
538
538
  readonly onExceed: (files: File[], fileList: import('.').UploadFile[]) => void;
539
539
  readonly inlinePreview: boolean;
540
- readonly placeholderIcon: object;
540
+ readonly placeholderIcon: import('..').IconValue;
541
541
  readonly successType: string;
542
542
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
543
543
  $slots: {
@@ -1,5 +1,6 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
2
  import { Size } from '@cyberpunk-vue/hooks';
3
+ import { IconValue } from '../../icon/src/icon';
3
4
  /**
4
5
  * 上传文件状态
5
6
  */
@@ -304,7 +305,7 @@ export declare const uploadProps: {
304
305
  * @default undefined
305
306
  */
306
307
  readonly placeholderIcon: {
307
- readonly type: PropType<object>;
308
+ readonly type: PropType<IconValue>;
308
309
  readonly default: undefined;
309
310
  };
310
311
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"upload.d.ts","sourceRoot":"","sources":["../../../upload/src/upload.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"upload.d.ts","sourceRoot":"","sources":["../../../upload/src/upload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACrD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAA;AAExE;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,GAAG,OAAO,CAAA;AAEtE;;GAEG;AACH,MAAM,WAAW,UAAU;IACvB,WAAW;IACX,GAAG,EAAE,MAAM,CAAA;IACX,UAAU;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW;IACX,MAAM,EAAE,YAAY,CAAA;IACpB,mBAAmB;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,8BAA8B;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,YAAY;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iBAAiB;IACjB,GAAG,CAAC,EAAE,IAAI,CAAA;IACV,sCAAsC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAA;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAC/B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAC5B,UAAU,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,SAAS,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAA;IACtC,OAAO,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAA;CAClC;AAED;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,SAAS,GAAG,cAAc,CAAA;AAEhE;;;;;;GAMG;AACH,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAA;AAErE;;;;;GAKG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAA;AAEtD;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;AAEzF;;;;GAIG;AACH,eAAO,MAAM,WAAW;IACpB;;;OAGG;;uBAEgB,QAAQ,CAAC,UAAU,EAAE,CAAC;;;IAGzC;;;OAGG;;;;;IAKH;;;OAGG;;uBAEiB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;IAGpD;;;OAGG;;uBAEiB,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;IAGpD;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;uBAEiB,QAAQ,CAAC,cAAc,CAAC;;;IAG5C;;;OAGG;;;;;IAKH;;;OAGG;;uBAEiB,QAAQ,CAAC,aAAa,CAAC;;;IAG3C;;;OAGG;;uBAEiB,QAAQ,CAAC,WAAW,CAAC;;;IAGzC;;;OAGG;;uBAEiB,QAAQ,CAAC,UAAU,CAAC;;;IAGxC;;;OAGG;;;;;IAKH;;;OAGG;;uBAE2B,QAAQ,CAAC,IAAI,CAAC;;;IAG5C;;;OAGG;;uBAEmB,QAAQ,CAAC,CAAC,OAAO,EAAE,oBAAoB,KAAK,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;;;IAG1F;;OAEG;;uBAEmB,QAAQ,CAAC,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;;;IAG1E;;OAEG;;uBAEmB,QAAQ,CAAC,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAK,IAAI,CAAC;;;IAG/E;;;;;OAKG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;;;;IAKH;;;;;OAKG;;;;;IAKH;;;;OAIG;;uBAEqC,QAAQ,CAAC,SAAS,CAAC;;;IAG3D;;;;;OAKG;;;;;IAKH;;;;;;OAMG;;;;;CAKG,CAAA;AAEV,MAAM,MAAM,WAAW,GAAG,gBAAgB,CAAC,OAAO,WAAW,CAAC,CAAA;AAE9D;;GAEG;AACH,eAAO,MAAM,WAAW;IACpB,iBAAiB;oCACe,UAAU,EAAE;IAC5C,aAAa;mBACE,UAAU,aAAa,UAAU,EAAE;IAClD,WAAW;yBACU,OAAO,QAAQ,UAAU,aAAa,UAAU,EAAE;IACvE,WAAW;oBACK,KAAK,QAAQ,UAAU,aAAa,UAAU,EAAE;IAChE,WAAW;4BACa,MAAM,QAAQ,UAAU;IAChD,WAAW;mBACI,UAAU,aAAa,UAAU,EAAE;CACrD,CAAA;AAED,MAAM,MAAM,WAAW,GAAG,OAAO,WAAW,CAAA"}
@@ -149,7 +149,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
149
149
  readonly default: undefined;
150
150
  };
151
151
  readonly placeholderIcon: {
152
- readonly type: import('vue').PropType<object>;
152
+ readonly type: import('vue').PropType<import('../..').IconValue>;
153
153
  readonly default: undefined;
154
154
  };
155
155
  readonly dimmed: {
@@ -286,7 +286,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
286
286
  readonly default: undefined;
287
287
  };
288
288
  readonly placeholderIcon: {
289
- readonly type: import('vue').PropType<object>;
289
+ readonly type: import('vue').PropType<import('../..').IconValue>;
290
290
  readonly default: undefined;
291
291
  };
292
292
  readonly dimmed: {
@@ -309,10 +309,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
309
309
  readonly data: Record<string, string>;
310
310
  readonly name: string;
311
311
  readonly type: import('./upload').UploadType;
312
+ readonly color: string;
312
313
  readonly variant: import('./upload').UploadVariant;
313
314
  readonly dimmed: boolean;
314
315
  readonly disabled: boolean;
315
- readonly color: string;
316
316
  readonly shape: import('./upload').UploadShape;
317
317
  readonly placeholder: string;
318
318
  readonly modelValue: UploadFile[];
@@ -334,7 +334,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
334
334
  readonly beforeUpload: (file: File) => boolean | Promise<boolean>;
335
335
  readonly onExceed: (files: File[], fileList: UploadFile[]) => void;
336
336
  readonly inlinePreview: boolean;
337
- readonly placeholderIcon: object;
337
+ readonly placeholderIcon: import('../..').IconValue;
338
338
  readonly successType: string;
339
339
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
340
340
  inputRef: HTMLInputElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyberpunk-vue/components",
3
- "version": "1.9.1",
3
+ "version": "1.9.3",
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/hooks": "1.9.1",
27
- "@cyberpunk-vue/constants": "1.9.1",
28
- "@cyberpunk-vue/theme-chalk": "1.9.1"
26
+ "@cyberpunk-vue/hooks": "1.9.3",
27
+ "@cyberpunk-vue/constants": "1.9.3",
28
+ "@cyberpunk-vue/theme-chalk": "1.9.3"
29
29
  },
30
30
  "author": "Juxest",
31
31
  "license": "MIT",