@cyberpunk-vue/components 0.1.2 → 0.1.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 (60) hide show
  1. package/dist/avatar/src/avatar.d.ts +1 -1
  2. package/dist/button/index.d.ts +12 -12
  3. package/dist/button/src/button.d.ts +1 -1
  4. package/dist/button/src/button.vue.d.ts +4 -4
  5. package/dist/card/index.d.ts +12 -12
  6. package/dist/card/src/card.d.ts +1 -1
  7. package/dist/card/src/card.vue.d.ts +6 -6
  8. package/dist/checkbox/index.d.ts +3 -3
  9. package/dist/checkbox/src/checkbox.d.ts +1 -1
  10. package/dist/checkbox/src/checkbox.vue.d.ts +1 -1
  11. package/dist/checkbox-group/index.d.ts +6 -6
  12. package/dist/checkbox-group/src/checkbox-group.d.ts +1 -1
  13. package/dist/checkbox-group/src/checkbox-group.vue.d.ts +3 -3
  14. package/dist/config-provider/index.d.ts +6 -6
  15. package/dist/config-provider/src/config-provider.d.ts +1 -1
  16. package/dist/config-provider/src/config-provider.vue.d.ts +3 -3
  17. package/dist/dropdown/index.d.ts +3 -3
  18. package/dist/dropdown/src/dropdown.d.ts +1 -1
  19. package/dist/dropdown/src/dropdown.vue.d.ts +1 -1
  20. package/dist/image/index.d.ts +6 -6
  21. package/dist/image/src/image.d.ts +1 -1
  22. package/dist/image/src/image.vue.d.ts +3 -3
  23. package/dist/input/index.d.ts +3 -3
  24. package/dist/input/src/input.d.ts +1 -1
  25. package/dist/input/src/input.vue.d.ts +1 -1
  26. package/dist/input-number/index.d.ts +1 -1
  27. package/dist/input-number/src/input-number.d.ts +1 -1
  28. package/dist/input-number/src/input-number.vue.d.ts +1 -1
  29. package/dist/loading/index.d.ts +1 -1
  30. package/dist/loading/src/loading.d.ts +1 -1
  31. package/dist/loading/src/loading.vue.d.ts +1 -1
  32. package/dist/progress/index.d.ts +6 -6
  33. package/dist/progress/src/progress.d.ts +1 -1
  34. package/dist/progress/src/progress.vue.d.ts +3 -3
  35. package/dist/radio/index.d.ts +3 -3
  36. package/dist/radio/src/radio.d.ts +1 -1
  37. package/dist/radio/src/radio.vue.d.ts +1 -1
  38. package/dist/radio-group/index.d.ts +6 -6
  39. package/dist/radio-group/src/radio-group.d.ts +1 -1
  40. package/dist/radio-group/src/radio-group.vue.d.ts +3 -3
  41. package/dist/slider/index.d.ts +1 -1
  42. package/dist/slider/src/slider.d.ts +1 -1
  43. package/dist/slider/src/slider.vue.d.ts +1 -1
  44. package/dist/status-indicator/index.d.ts +3 -3
  45. package/dist/status-indicator/src/status-indicator.d.ts +1 -1
  46. package/dist/status-indicator/src/status-indicator.vue.d.ts +1 -1
  47. package/dist/switch/index.d.ts +1 -1
  48. package/dist/switch/src/switch.d.ts +1 -1
  49. package/dist/switch/src/switch.vue.d.ts +1 -1
  50. package/dist/tag/index.d.ts +3 -3
  51. package/dist/tag/src/tag.d.ts +1 -1
  52. package/dist/tag/src/tag.vue.d.ts +1 -1
  53. package/dist/text/index.d.ts +12 -12
  54. package/dist/text/src/text.d.ts +1 -1
  55. package/dist/text/src/text.vue.d.ts +6 -6
  56. package/dist/textarea/index.d.ts +1 -1
  57. package/dist/textarea/src/textarea.d.ts +1 -1
  58. package/dist/textarea/src/textarea.vue.d.ts +1 -1
  59. package/dist/vite.config.d.ts.map +1 -1
  60. package/package.json +4 -4
@@ -105,7 +105,7 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
105
105
  focus: (event: FocusEvent) => void;
106
106
  blur: (event: FocusEvent) => void;
107
107
  }, import('vue').PublicProps, {
108
- readonly size: import('../../cyberpunk-vue').Size;
108
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
109
109
  readonly type: import('.').InputType;
110
110
  readonly variant: import('.').InputVariant;
111
111
  readonly disabled: boolean;
@@ -212,7 +212,7 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
212
212
  blur: () => void | undefined;
213
213
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
214
214
  }, {}, {}, {}, {
215
- readonly size: import('../../cyberpunk-vue').Size;
215
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
216
216
  readonly type: import('.').InputType;
217
217
  readonly variant: import('.').InputVariant;
218
218
  readonly disabled: boolean;
@@ -321,7 +321,7 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
321
321
  focus: (event: FocusEvent) => void;
322
322
  blur: (event: FocusEvent) => void;
323
323
  }, string, {
324
- readonly size: import('../../cyberpunk-vue').Size;
324
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
325
325
  readonly type: import('.').InputType;
326
326
  readonly variant: import('.').InputVariant;
327
327
  readonly disabled: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 输入框类型
5
5
  * - `text` - 普通文本输入(默认)
@@ -167,7 +167,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
167
167
  onFocus?: ((event: FocusEvent) => any) | undefined;
168
168
  onBlur?: ((event: FocusEvent) => any) | undefined;
169
169
  }>, {
170
- readonly size: import('../../../hooks').Size;
170
+ readonly size: import('@cyberpunk-vue/hooks').Size;
171
171
  readonly type: import('./input').InputType;
172
172
  readonly variant: import('./input').InputVariant;
173
173
  readonly disabled: boolean;
@@ -111,7 +111,7 @@ export declare const CpInputNumber: import('../utils').SFCWithInstall<import('vu
111
111
  onFocus?: ((event: FocusEvent) => any) | undefined;
112
112
  onBlur?: ((event: FocusEvent) => any) | undefined;
113
113
  }>, {
114
- readonly size: import('../../cyberpunk-vue').Size;
114
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
115
115
  readonly disabled: boolean;
116
116
  readonly color: string;
117
117
  readonly placeholder: string;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * InputNumber 尺寸
5
5
  * - 也支持数字 (px) 或带单位字符串 (如 '2rem')
@@ -111,7 +111,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
111
111
  onFocus?: ((event: FocusEvent) => any) | undefined;
112
112
  onBlur?: ((event: FocusEvent) => any) | undefined;
113
113
  }>, {
114
- readonly size: import('../../../hooks').Size;
114
+ readonly size: import('@cyberpunk-vue/hooks').Size;
115
115
  readonly disabled: boolean;
116
116
  readonly color: string;
117
117
  readonly placeholder: string;
@@ -47,7 +47,7 @@ export declare const CpLoading: import('../utils').SFCWithInstall<import('vue').
47
47
  readonly default: 4;
48
48
  };
49
49
  }>> & Readonly<{}>, {
50
- readonly size: import('../../cyberpunk-vue').Size;
50
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
51
51
  readonly type: import('.').LoadingType;
52
52
  readonly color: string;
53
53
  readonly strokeWidth: number;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 加载器颜色类型
5
5
  * - `primary` - 主要色(赛博蓝)
@@ -33,7 +33,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
33
33
  readonly default: 4;
34
34
  };
35
35
  }>> & Readonly<{}>, {
36
- readonly size: import('../../../hooks').Size;
36
+ readonly size: import('@cyberpunk-vue/hooks').Size;
37
37
  readonly type: import('./loading').LoadingType;
38
38
  readonly color: string;
39
39
  readonly strokeWidth: number;
@@ -79,7 +79,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
79
79
  readonly default: false;
80
80
  };
81
81
  readonly duration: {
82
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
82
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
83
83
  readonly default: 3000;
84
84
  };
85
85
  readonly loading: {
@@ -115,7 +115,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
115
115
  readonly textColor: string;
116
116
  readonly strokeWidth: number;
117
117
  readonly width: number;
118
- readonly duration: import('../../cyberpunk-vue').DurationValue;
118
+ readonly duration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
119
119
  readonly max: number;
120
120
  readonly percentage: number;
121
121
  readonly status: import('.').ProgressStatus;
@@ -199,7 +199,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
199
199
  readonly default: false;
200
200
  };
201
201
  readonly duration: {
202
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
202
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
203
203
  readonly default: 3000;
204
204
  };
205
205
  readonly loading: {
@@ -235,7 +235,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
235
235
  readonly textColor: string;
236
236
  readonly strokeWidth: number;
237
237
  readonly width: number;
238
- readonly duration: import('../../cyberpunk-vue').DurationValue;
238
+ readonly duration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
239
239
  readonly max: number;
240
240
  readonly percentage: number;
241
241
  readonly status: import('.').ProgressStatus;
@@ -316,7 +316,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
316
316
  readonly default: false;
317
317
  };
318
318
  readonly duration: {
319
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
319
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
320
320
  readonly default: 3000;
321
321
  };
322
322
  readonly loading: {
@@ -352,7 +352,7 @@ export declare const CpProgress: import('../utils').SFCWithInstall<{
352
352
  readonly textColor: string;
353
353
  readonly strokeWidth: number;
354
354
  readonly width: number;
355
- readonly duration: import('../../cyberpunk-vue').DurationValue;
355
+ readonly duration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
356
356
  readonly max: number;
357
357
  readonly percentage: number;
358
358
  readonly status: import('.').ProgressStatus;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { DurationValue, Size } from '../../../hooks';
2
+ import { DurationValue, Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 进度条类型
5
5
  * - `line` - 线性进度条(默认)
@@ -73,7 +73,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
73
73
  readonly default: false;
74
74
  };
75
75
  readonly duration: {
76
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
76
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
77
77
  readonly default: 3000;
78
78
  };
79
79
  readonly loading: {
@@ -163,7 +163,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
163
163
  readonly default: false;
164
164
  };
165
165
  readonly duration: {
166
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
166
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
167
167
  readonly default: 3000;
168
168
  };
169
169
  readonly loading: {
@@ -199,7 +199,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
199
199
  readonly textColor: string;
200
200
  readonly strokeWidth: number;
201
201
  readonly width: number;
202
- readonly duration: import('../../../hooks').DurationValue;
202
+ readonly duration: import('@cyberpunk-vue/hooks').DurationValue;
203
203
  readonly max: number;
204
204
  readonly percentage: number;
205
205
  readonly status: import('./progress').ProgressStatus;
@@ -57,7 +57,7 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
57
57
  "update:modelValue": (value: import('.').RadioValueType) => void;
58
58
  change: (value: import('.').RadioValueType) => void;
59
59
  }, import('vue').PublicProps, {
60
- readonly size: import('../../cyberpunk-vue').Size;
60
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
61
61
  readonly name: string;
62
62
  readonly type: import('.').RadioType;
63
63
  readonly disabled: boolean;
@@ -114,7 +114,7 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
114
114
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
115
115
  checked: import('vue').ComputedRef<boolean>;
116
116
  }, {}, {}, {}, {
117
- readonly size: import('../../cyberpunk-vue').Size;
117
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
118
118
  readonly name: string;
119
119
  readonly type: import('.').RadioType;
120
120
  readonly disabled: boolean;
@@ -169,7 +169,7 @@ export declare const CpRadio: import('../utils').SFCWithInstall<{
169
169
  "update:modelValue": (value: import('.').RadioValueType) => void;
170
170
  change: (value: import('.').RadioValueType) => void;
171
171
  }, string, {
172
- readonly size: import('../../cyberpunk-vue').Size;
172
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
173
173
  readonly name: string;
174
174
  readonly type: import('.').RadioType;
175
175
  readonly disabled: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 单选框尺寸
5
5
  * - `sm` - 小尺寸 (14px)
@@ -87,7 +87,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
87
87
  "onUpdate:modelValue"?: ((value: import('./radio').RadioValueType) => any) | undefined;
88
88
  onChange?: ((value: import('./radio').RadioValueType) => any) | undefined;
89
89
  }>, {
90
- readonly size: import('../../../hooks').Size;
90
+ readonly size: import('@cyberpunk-vue/hooks').Size;
91
91
  readonly name: string;
92
92
  readonly type: import('./radio').RadioType;
93
93
  readonly disabled: boolean;
@@ -24,7 +24,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
24
24
  readonly default: false;
25
25
  };
26
26
  readonly size: {
27
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').Size>;
27
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').Size>;
28
28
  readonly default: "md";
29
29
  };
30
30
  readonly type: {
@@ -48,7 +48,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
48
48
  "update:modelValue": (value: import('..').RadioValueType) => void;
49
49
  change: (value: import('..').RadioValueType) => void;
50
50
  }, import('vue').PublicProps, {
51
- readonly size: import('../../cyberpunk-vue').Size;
51
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
52
52
  readonly name: string;
53
53
  readonly type: import('..').RadioType;
54
54
  readonly disabled: boolean;
@@ -71,7 +71,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
71
71
  readonly default: false;
72
72
  };
73
73
  readonly size: {
74
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').Size>;
74
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').Size>;
75
75
  readonly default: "md";
76
76
  };
77
77
  readonly type: {
@@ -92,7 +92,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
92
92
  }>, {
93
93
  modelValue: import('vue').Ref<import('..').RadioValueType | undefined, import('..').RadioValueType | undefined>;
94
94
  }, {}, {}, {}, {
95
- readonly size: import('../../cyberpunk-vue').Size;
95
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
96
96
  readonly name: string;
97
97
  readonly type: import('..').RadioType;
98
98
  readonly disabled: boolean;
@@ -112,7 +112,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
112
112
  readonly default: false;
113
113
  };
114
114
  readonly size: {
115
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').Size>;
115
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').Size>;
116
116
  readonly default: "md";
117
117
  };
118
118
  readonly type: {
@@ -136,7 +136,7 @@ export declare const CpRadioGroup: import('../utils').SFCWithInstall<{
136
136
  "update:modelValue": (value: import('..').RadioValueType) => void;
137
137
  change: (value: import('..').RadioValueType) => void;
138
138
  }, string, {
139
- readonly size: import('../../cyberpunk-vue').Size;
139
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
140
140
  readonly name: string;
141
141
  readonly type: import('..').RadioType;
142
142
  readonly disabled: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  import { RadioValueType, RadioType } from '../../radio/src/radio';
4
4
  /**
5
5
  * CpRadioGroup 组件 Props 定义
@@ -18,7 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
18
18
  readonly default: false;
19
19
  };
20
20
  readonly size: {
21
- readonly type: import('vue').PropType<import('../../../hooks').Size>;
21
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
22
22
  readonly default: "md";
23
23
  };
24
24
  readonly type: {
@@ -49,7 +49,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
49
49
  readonly default: false;
50
50
  };
51
51
  readonly size: {
52
- readonly type: import('vue').PropType<import('../../../hooks').Size>;
52
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').Size>;
53
53
  readonly default: "md";
54
54
  };
55
55
  readonly type: {
@@ -68,7 +68,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
68
68
  "onUpdate:modelValue"?: ((value: RadioValueType) => any) | undefined;
69
69
  onChange?: ((value: RadioValueType) => any) | undefined;
70
70
  }>, {
71
- readonly size: import('../../../hooks').Size;
71
+ readonly size: import('@cyberpunk-vue/hooks').Size;
72
72
  readonly name: string;
73
73
  readonly type: import('../..').RadioType;
74
74
  readonly disabled: boolean;
@@ -145,7 +145,7 @@ export declare const CpSlider: import('../utils').SFCWithInstall<import('vue').D
145
145
  "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
146
146
  onChange?: ((value: number | [number, number]) => any) | undefined;
147
147
  }>, {
148
- readonly size: import('../../cyberpunk-vue').Size;
148
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
149
149
  readonly disabled: boolean;
150
150
  readonly color: string;
151
151
  readonly shape: import('.').SliderShape;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 滑块尺寸
5
5
  * - `sm` - 小尺寸 (轨道高度 4px)
@@ -131,7 +131,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
131
131
  "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
132
132
  onChange?: ((value: number | [number, number]) => any) | undefined;
133
133
  }>, {
134
- readonly size: import('../../../hooks').Size;
134
+ readonly size: import('@cyberpunk-vue/hooks').Size;
135
135
  readonly disabled: boolean;
136
136
  readonly color: string;
137
137
  readonly shape: import('./slider').SliderShape;
@@ -37,7 +37,7 @@ export declare const CpStatusIndicator: import('../utils').SFCWithInstall<{
37
37
  readonly default: "";
38
38
  };
39
39
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
40
- readonly size: import('../../cyberpunk-vue').Size;
40
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
41
41
  readonly type: import('.').StatusIndicatorType;
42
42
  readonly color: string;
43
43
  readonly shape: import('.').StatusIndicatorShape;
@@ -91,7 +91,7 @@ export declare const CpStatusIndicator: import('../utils').SFCWithInstall<{
91
91
  readonly default: "";
92
92
  };
93
93
  }>> & Readonly<{}>, {}, {}, {}, {}, {
94
- readonly size: import('../../cyberpunk-vue').Size;
94
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
95
95
  readonly type: import('.').StatusIndicatorType;
96
96
  readonly color: string;
97
97
  readonly shape: import('.').StatusIndicatorShape;
@@ -142,7 +142,7 @@ export declare const CpStatusIndicator: import('../utils').SFCWithInstall<{
142
142
  readonly default: "";
143
143
  };
144
144
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
145
- readonly size: import('../../cyberpunk-vue').Size;
145
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
146
146
  readonly type: import('.').StatusIndicatorType;
147
147
  readonly color: string;
148
148
  readonly shape: import('.').StatusIndicatorShape;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 状态指示器颜色类型
5
5
  * - `primary` - 主要色(赛博蓝)
@@ -82,7 +82,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
82
82
  readonly default: "";
83
83
  };
84
84
  }>> & Readonly<{}>, {
85
- readonly size: import('../../../hooks').Size;
85
+ readonly size: import('@cyberpunk-vue/hooks').Size;
86
86
  readonly type: import('./status-indicator').StatusIndicatorType;
87
87
  readonly color: string;
88
88
  readonly shape: import('./status-indicator').StatusIndicatorShape;
@@ -126,7 +126,7 @@ export declare const CpSwitch: import('../utils').SFCWithInstall<import('vue').D
126
126
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
127
127
  onChange?: ((value: boolean) => any) | undefined;
128
128
  }>, {
129
- readonly size: import('../../cyberpunk-vue').Size;
129
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
130
130
  readonly name: string;
131
131
  readonly type: import('.').SwitchType;
132
132
  readonly disabled: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 开关尺寸
5
5
  * - `sm` - 小尺寸 (16px 高)
@@ -113,7 +113,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
113
113
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
114
114
  onChange?: ((value: boolean) => any) | undefined;
115
115
  }>, {
116
- readonly size: import('../../../hooks').Size;
116
+ readonly size: import('@cyberpunk-vue/hooks').Size;
117
117
  readonly name: string;
118
118
  readonly type: import('./switch').SwitchType;
119
119
  readonly disabled: boolean;
@@ -62,7 +62,7 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
62
62
  close: (event: MouseEvent) => void;
63
63
  "update:selected": (selected: boolean) => void;
64
64
  }, import('vue').PublicProps, {
65
- readonly size: import('../../cyberpunk-vue').Size;
65
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
66
66
  readonly type: import('.').TagType;
67
67
  readonly variant: import('.').TagVariant;
68
68
  readonly disabled: boolean;
@@ -125,7 +125,7 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
125
125
  onClose?: ((event: MouseEvent) => any) | undefined;
126
126
  "onUpdate:selected"?: ((selected: boolean) => any) | undefined;
127
127
  }>, {}, {}, {}, {}, {
128
- readonly size: import('../../cyberpunk-vue').Size;
128
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
129
129
  readonly type: import('.').TagType;
130
130
  readonly variant: import('.').TagVariant;
131
131
  readonly disabled: boolean;
@@ -189,7 +189,7 @@ export declare const CpTag: import('../utils').SFCWithInstall<{
189
189
  close: (event: MouseEvent) => void;
190
190
  "update:selected": (selected: boolean) => void;
191
191
  }, string, {
192
- readonly size: import('../../cyberpunk-vue').Size;
192
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
193
193
  readonly type: import('.').TagType;
194
194
  readonly variant: import('.').TagVariant;
195
195
  readonly disabled: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { Size } from '../../../hooks';
2
+ import { Size } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 标签尺寸
5
5
  * - `sm` - 小尺寸
@@ -100,7 +100,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
100
100
  onClose?: ((event: MouseEvent) => any) | undefined;
101
101
  "onUpdate:selected"?: ((selected: boolean) => any) | undefined;
102
102
  }>, {
103
- readonly size: import('../../../hooks').Size;
103
+ readonly size: import('@cyberpunk-vue/hooks').Size;
104
104
  readonly type: import('./tag').TagType;
105
105
  readonly variant: import('./tag').TagVariant;
106
106
  readonly disabled: boolean;
@@ -70,7 +70,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
70
70
  readonly default: false;
71
71
  };
72
72
  readonly lightWaveDuration: {
73
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
73
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
74
74
  readonly default: 2000;
75
75
  };
76
76
  readonly marker: {
@@ -82,7 +82,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
82
82
  readonly default: "";
83
83
  };
84
84
  readonly glowPulseDuration: {
85
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
85
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
86
86
  readonly default: 1500;
87
87
  };
88
88
  readonly unselectable: {
@@ -105,9 +105,9 @@ export declare const CpText: import('../utils').SFCWithInstall<{
105
105
  readonly glowIntensity: number;
106
106
  readonly glowPulse: boolean;
107
107
  readonly lightWave: boolean;
108
- readonly lightWaveDuration: import('../../cyberpunk-vue').DurationValue;
108
+ readonly lightWaveDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
109
109
  readonly markerColor: string;
110
- readonly glowPulseDuration: import('../../cyberpunk-vue').DurationValue;
110
+ readonly glowPulseDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
111
111
  readonly unselectable: boolean;
112
112
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLSpanElement, import('vue').ComponentProvideOptions, {
113
113
  P: {};
@@ -174,7 +174,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
174
174
  readonly default: false;
175
175
  };
176
176
  readonly lightWaveDuration: {
177
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
177
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
178
178
  readonly default: 2000;
179
179
  };
180
180
  readonly marker: {
@@ -186,7 +186,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
186
186
  readonly default: "";
187
187
  };
188
188
  readonly glowPulseDuration: {
189
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
189
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
190
190
  readonly default: 1500;
191
191
  };
192
192
  readonly unselectable: {
@@ -209,9 +209,9 @@ export declare const CpText: import('../utils').SFCWithInstall<{
209
209
  readonly glowIntensity: number;
210
210
  readonly glowPulse: boolean;
211
211
  readonly lightWave: boolean;
212
- readonly lightWaveDuration: import('../../cyberpunk-vue').DurationValue;
212
+ readonly lightWaveDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
213
213
  readonly markerColor: string;
214
- readonly glowPulseDuration: import('../../cyberpunk-vue').DurationValue;
214
+ readonly glowPulseDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
215
215
  readonly unselectable: boolean;
216
216
  }>;
217
217
  __isFragment?: never;
@@ -275,7 +275,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
275
275
  readonly default: false;
276
276
  };
277
277
  readonly lightWaveDuration: {
278
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
278
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
279
279
  readonly default: 2000;
280
280
  };
281
281
  readonly marker: {
@@ -287,7 +287,7 @@ export declare const CpText: import('../utils').SFCWithInstall<{
287
287
  readonly default: "";
288
288
  };
289
289
  readonly glowPulseDuration: {
290
- readonly type: import('vue').PropType<import('../../cyberpunk-vue').DurationValue>;
290
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/cyberpunk-vue').DurationValue>;
291
291
  readonly default: 1500;
292
292
  };
293
293
  readonly unselectable: {
@@ -310,9 +310,9 @@ export declare const CpText: import('../utils').SFCWithInstall<{
310
310
  readonly glowIntensity: number;
311
311
  readonly glowPulse: boolean;
312
312
  readonly lightWave: boolean;
313
- readonly lightWaveDuration: import('../../cyberpunk-vue').DurationValue;
313
+ readonly lightWaveDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
314
314
  readonly markerColor: string;
315
- readonly glowPulseDuration: import('../../cyberpunk-vue').DurationValue;
315
+ readonly glowPulseDuration: import('@cyberpunk-vue/cyberpunk-vue').DurationValue;
316
316
  readonly unselectable: boolean;
317
317
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
318
318
  $slots: {
@@ -1,5 +1,5 @@
1
1
  import { ExtractPropTypes, PropType } from 'vue';
2
- import { DurationValue } from '../../../hooks';
2
+ import { DurationValue } from '@cyberpunk-vue/hooks';
3
3
  /**
4
4
  * 文字尺寸
5
5
  * - `sm` - 小尺寸 (12px)
@@ -67,7 +67,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
67
67
  readonly default: false;
68
68
  };
69
69
  readonly lightWaveDuration: {
70
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
70
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
71
71
  readonly default: 2000;
72
72
  };
73
73
  readonly marker: {
@@ -79,7 +79,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
79
79
  readonly default: "";
80
80
  };
81
81
  readonly glowPulseDuration: {
82
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
82
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
83
83
  readonly default: 1500;
84
84
  };
85
85
  readonly unselectable: {
@@ -144,7 +144,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
144
144
  readonly default: false;
145
145
  };
146
146
  readonly lightWaveDuration: {
147
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
147
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
148
148
  readonly default: 2000;
149
149
  };
150
150
  readonly marker: {
@@ -156,7 +156,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
156
156
  readonly default: "";
157
157
  };
158
158
  readonly glowPulseDuration: {
159
- readonly type: import('vue').PropType<import('../../../hooks').DurationValue>;
159
+ readonly type: import('vue').PropType<import('@cyberpunk-vue/hooks').DurationValue>;
160
160
  readonly default: 1500;
161
161
  };
162
162
  readonly unselectable: {
@@ -179,9 +179,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
179
179
  readonly glowIntensity: number;
180
180
  readonly glowPulse: boolean;
181
181
  readonly lightWave: boolean;
182
- readonly lightWaveDuration: import('../../../hooks').DurationValue;
182
+ readonly lightWaveDuration: import('@cyberpunk-vue/hooks').DurationValue;
183
183
  readonly markerColor: string;
184
- readonly glowPulseDuration: import('../../../hooks').DurationValue;
184
+ readonly glowPulseDuration: import('@cyberpunk-vue/hooks').DurationValue;
185
185
  readonly unselectable: boolean;
186
186
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLSpanElement>;
187
187
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -119,7 +119,7 @@ export declare const CpTextarea: import('../utils').SFCWithInstall<import('vue')
119
119
  onFocus?: ((event: FocusEvent) => any) | undefined;
120
120
  onBlur?: ((event: FocusEvent) => any) | undefined;
121
121
  }>, {
122
- readonly size: import('../../cyberpunk-vue').Size;
122
+ readonly size: import('@cyberpunk-vue/cyberpunk-vue').Size;
123
123
  readonly variant: import('.').TextareaVariant;
124
124
  readonly disabled: boolean;
125
125
  readonly color: string;