@cyberpunk-vue/components 1.9.0 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avatar/index.d.ts +6 -6
- package/dist/avatar/index.d.ts.map +1 -1
- package/dist/avatar/src/avatar.d.ts +3 -2
- package/dist/avatar/src/avatar.d.ts.map +1 -1
- package/dist/avatar/src/avatar.vue.d.ts +3 -3
- package/dist/avatar/src/avatar.vue.d.ts.map +1 -1
- package/dist/badge/index.d.ts +3 -3
- package/dist/badge/src/badge.vue.d.ts +1 -1
- package/dist/breadcrumb/index.d.ts +3 -3
- package/dist/breadcrumb/src/breadcrumb.vue.d.ts +1 -1
- package/dist/button/index.d.ts +21 -21
- package/dist/button/src/button.d.ts +4 -3
- package/dist/button/src/button.d.ts.map +1 -1
- package/dist/button/src/button.vue.d.ts +10 -10
- package/dist/card/index.d.ts +3 -3
- package/dist/card/src/card.vue.d.ts +1 -1
- package/dist/checkbox/index.d.ts +3 -3
- package/dist/checkbox/src/checkbox.vue.d.ts +1 -1
- package/dist/dialog/index.d.ts +3 -3
- package/dist/dialog/src/dialog.vue.d.ts +1 -1
- package/dist/divider/index.d.ts +3 -3
- package/dist/divider/src/divider.vue.d.ts +1 -1
- package/dist/dropdown/index.d.ts +3 -3
- package/dist/dropdown/src/dropdown.vue.d.ts +1 -1
- package/dist/empty/index.d.ts +6 -6
- package/dist/empty/src/empty.d.ts +3 -2
- package/dist/empty/src/empty.d.ts.map +1 -1
- package/dist/empty/src/empty.vue.d.ts +3 -3
- package/dist/icon/index.d.ts +6 -6
- package/dist/icon/src/icon.vue.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +2847 -2728
- package/dist/input/index.d.ts +3 -3
- package/dist/input/src/input.vue.d.ts +1 -1
- package/dist/input-number/index.d.ts +1 -1
- package/dist/input-number/src/input-number.vue.d.ts +1 -1
- package/dist/loading/index.d.ts +1 -1
- package/dist/loading/src/loading.vue.d.ts +1 -1
- package/dist/menu/index.d.ts +3 -3
- package/dist/menu/src/menu.vue.d.ts +1 -1
- package/dist/menu-item/index.d.ts +3 -3
- package/dist/menu-item/src/menu-item.d.ts.map +1 -1
- package/dist/menu-item/src/menu-item.vue.d.ts +1 -1
- package/dist/menu-nav/index.d.ts +1 -1
- package/dist/menu-nav/src/menu-nav.vue.d.ts +1 -1
- package/dist/notification/index.d.ts +3 -3
- package/dist/notification/src/notification.vue.d.ts +1 -1
- package/dist/pagination/index.d.ts +3 -3
- package/dist/pagination/src/pagination.vue.d.ts +1 -1
- package/dist/popover/src/popover.vue.d.ts +1 -1
- package/dist/progress/index.d.ts +3 -3
- package/dist/progress/src/progress.vue.d.ts +1 -1
- package/dist/radio/index.d.ts +3 -3
- package/dist/radio/src/radio.vue.d.ts +1 -1
- package/dist/segmented/index.d.ts +1 -1
- package/dist/segmented/src/segmented.vue.d.ts +1 -1
- package/dist/slider/index.d.ts +1 -1
- package/dist/slider/src/slider.vue.d.ts +1 -1
- package/dist/sub-menu/index.d.ts +3 -3
- package/dist/sub-menu/src/sub-menu.d.ts.map +1 -1
- package/dist/sub-menu/src/sub-menu.vue.d.ts +1 -1
- package/dist/switch/index.d.ts +1 -1
- package/dist/switch/src/switch.vue.d.ts +1 -1
- package/dist/table/index.d.ts +62 -3
- package/dist/table/index.d.ts.map +1 -1
- package/dist/table/src/table.d.ts +36 -0
- package/dist/table/src/table.d.ts.map +1 -1
- package/dist/table/src/table.vue.d.ts +36 -1
- package/dist/table/src/table.vue.d.ts.map +1 -1
- package/dist/tag/index.d.ts +3 -3
- package/dist/tag/src/tag.vue.d.ts +1 -1
- package/dist/textarea/index.d.ts +1 -1
- package/dist/textarea/src/textarea.vue.d.ts +1 -1
- package/dist/timeline-item/index.d.ts +6 -6
- package/dist/timeline-item/src/timeline-item.d.ts +3 -2
- package/dist/timeline-item/src/timeline-item.d.ts.map +1 -1
- package/dist/timeline-item/src/timeline-item.vue.d.ts +3 -3
- package/dist/upload/index.d.ts +9 -9
- package/dist/upload/src/upload.d.ts +2 -1
- package/dist/upload/src/upload.d.ts.map +1 -1
- package/dist/upload/src/upload.vue.d.ts +4 -4
- package/package.json +4 -4
package/dist/input/index.d.ts
CHANGED
|
@@ -111,9 +111,9 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
|
|
|
111
111
|
}, import('vue').PublicProps, {
|
|
112
112
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
113
113
|
readonly type: import('.').InputType;
|
|
114
|
+
readonly color: string;
|
|
114
115
|
readonly variant: import('.').InputVariant;
|
|
115
116
|
readonly disabled: boolean;
|
|
116
|
-
readonly color: string;
|
|
117
117
|
readonly shape: import('.').InputShape;
|
|
118
118
|
readonly textColor: string;
|
|
119
119
|
readonly placeholder: string;
|
|
@@ -223,9 +223,9 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
|
|
|
223
223
|
}, {}, {}, {}, {
|
|
224
224
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
225
225
|
readonly type: import('.').InputType;
|
|
226
|
+
readonly color: string;
|
|
226
227
|
readonly variant: import('.').InputVariant;
|
|
227
228
|
readonly disabled: boolean;
|
|
228
|
-
readonly color: string;
|
|
229
229
|
readonly shape: import('.').InputShape;
|
|
230
230
|
readonly textColor: string;
|
|
231
231
|
readonly placeholder: string;
|
|
@@ -337,9 +337,9 @@ export declare const CpInput: import('../utils').SFCWithInstall<{
|
|
|
337
337
|
}, string, {
|
|
338
338
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
339
339
|
readonly type: import('.').InputType;
|
|
340
|
+
readonly color: string;
|
|
340
341
|
readonly variant: import('.').InputVariant;
|
|
341
342
|
readonly disabled: boolean;
|
|
342
|
-
readonly color: string;
|
|
343
343
|
readonly shape: import('.').InputShape;
|
|
344
344
|
readonly textColor: string;
|
|
345
345
|
readonly placeholder: string;
|
|
@@ -177,9 +177,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
177
177
|
}>, {
|
|
178
178
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
179
179
|
readonly type: import('./input').InputType;
|
|
180
|
+
readonly color: string;
|
|
180
181
|
readonly variant: import('./input').InputVariant;
|
|
181
182
|
readonly disabled: boolean;
|
|
182
|
-
readonly color: string;
|
|
183
183
|
readonly shape: import('./input').InputShape;
|
|
184
184
|
readonly textColor: string;
|
|
185
185
|
readonly placeholder: string;
|
|
@@ -112,8 +112,8 @@ export declare const CpInputNumber: import('../utils').SFCWithInstall<import('vu
|
|
|
112
112
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
114
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
115
|
-
readonly disabled: boolean;
|
|
116
115
|
readonly color: string;
|
|
116
|
+
readonly disabled: boolean;
|
|
117
117
|
readonly placeholder: string;
|
|
118
118
|
readonly modelValue: number;
|
|
119
119
|
readonly readonly: boolean;
|
|
@@ -112,8 +112,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
112
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
114
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
115
|
-
readonly disabled: boolean;
|
|
116
115
|
readonly color: string;
|
|
116
|
+
readonly disabled: boolean;
|
|
117
117
|
readonly placeholder: string;
|
|
118
118
|
readonly modelValue: number;
|
|
119
119
|
readonly readonly: boolean;
|
package/dist/loading/index.d.ts
CHANGED
|
@@ -57,8 +57,8 @@ export declare const CpLoading: import('../utils').SFCWithInstall<import('vue').
|
|
|
57
57
|
}>> & Readonly<{}>, {
|
|
58
58
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
59
59
|
readonly type: import('.').LoadingType;
|
|
60
|
-
readonly variant: import('.').LoadingVariant;
|
|
61
60
|
readonly color: string;
|
|
61
|
+
readonly variant: import('.').LoadingVariant;
|
|
62
62
|
readonly strokeWidth: number;
|
|
63
63
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
|
|
64
64
|
export default CpLoading;
|
|
@@ -43,8 +43,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
43
43
|
}>> & Readonly<{}>, {
|
|
44
44
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
45
45
|
readonly type: import('./loading').LoadingType;
|
|
46
|
-
readonly variant: import('./loading').LoadingVariant;
|
|
47
46
|
readonly color: string;
|
|
47
|
+
readonly variant: import('./loading').LoadingVariant;
|
|
48
48
|
readonly strokeWidth: number;
|
|
49
49
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
50
50
|
export default _default;
|
package/dist/menu/index.d.ts
CHANGED
|
@@ -66,8 +66,8 @@ export declare const CpMenu: import('../utils').SFCWithInstall<{
|
|
|
66
66
|
}, import('vue').PublicProps, {
|
|
67
67
|
readonly mode: import('.').MenuMode;
|
|
68
68
|
readonly type: import('.').MenuType;
|
|
69
|
-
readonly variant: import('.').MenuVariant;
|
|
70
69
|
readonly color: string;
|
|
70
|
+
readonly variant: import('.').MenuVariant;
|
|
71
71
|
readonly shape: import('.').MenuShape;
|
|
72
72
|
readonly collapse: boolean;
|
|
73
73
|
readonly defaultActive: string;
|
|
@@ -129,8 +129,8 @@ export declare const CpMenu: import('../utils').SFCWithInstall<{
|
|
|
129
129
|
}>, {}, {}, {}, {}, {
|
|
130
130
|
readonly mode: import('.').MenuMode;
|
|
131
131
|
readonly type: import('.').MenuType;
|
|
132
|
-
readonly variant: import('.').MenuVariant;
|
|
133
132
|
readonly color: string;
|
|
133
|
+
readonly variant: import('.').MenuVariant;
|
|
134
134
|
readonly shape: import('.').MenuShape;
|
|
135
135
|
readonly collapse: boolean;
|
|
136
136
|
readonly defaultActive: string;
|
|
@@ -193,8 +193,8 @@ export declare const CpMenu: import('../utils').SFCWithInstall<{
|
|
|
193
193
|
}, string, {
|
|
194
194
|
readonly mode: import('.').MenuMode;
|
|
195
195
|
readonly type: import('.').MenuType;
|
|
196
|
-
readonly variant: import('.').MenuVariant;
|
|
197
196
|
readonly color: string;
|
|
197
|
+
readonly variant: import('.').MenuVariant;
|
|
198
198
|
readonly shape: import('.').MenuShape;
|
|
199
199
|
readonly collapse: boolean;
|
|
200
200
|
readonly defaultActive: string;
|
|
@@ -100,8 +100,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
100
100
|
}>, {
|
|
101
101
|
readonly mode: import('./menu').MenuMode;
|
|
102
102
|
readonly type: import('./menu').MenuType;
|
|
103
|
-
readonly variant: import('./menu').MenuVariant;
|
|
104
103
|
readonly color: string;
|
|
104
|
+
readonly variant: import('./menu').MenuVariant;
|
|
105
105
|
readonly shape: import('./menu').MenuShape;
|
|
106
106
|
readonly collapse: boolean;
|
|
107
107
|
readonly defaultActive: string;
|
|
@@ -29,8 +29,8 @@ export declare const CpMenuItem: import('../utils').SFCWithInstall<{
|
|
|
29
29
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
30
30
|
click: (index: string) => void;
|
|
31
31
|
}, import('vue').PublicProps, {
|
|
32
|
-
readonly disabled: boolean;
|
|
33
32
|
readonly icon: import('..').IconValue;
|
|
33
|
+
readonly disabled: boolean;
|
|
34
34
|
readonly index: string;
|
|
35
35
|
readonly route: string | Record<string, unknown>;
|
|
36
36
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
@@ -60,8 +60,8 @@ export declare const CpMenuItem: import('../utils').SFCWithInstall<{
|
|
|
60
60
|
}>> & Readonly<{
|
|
61
61
|
onClick?: ((index: string) => any) | undefined;
|
|
62
62
|
}>, {}, {}, {}, {}, {
|
|
63
|
-
readonly disabled: boolean;
|
|
64
63
|
readonly icon: import('..').IconValue;
|
|
64
|
+
readonly disabled: boolean;
|
|
65
65
|
readonly index: string;
|
|
66
66
|
readonly route: string | Record<string, unknown>;
|
|
67
67
|
}>;
|
|
@@ -90,8 +90,8 @@ export declare const CpMenuItem: import('../utils').SFCWithInstall<{
|
|
|
90
90
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
91
91
|
click: (index: string) => void;
|
|
92
92
|
}, string, {
|
|
93
|
-
readonly disabled: boolean;
|
|
94
93
|
readonly icon: import('..').IconValue;
|
|
94
|
+
readonly disabled: boolean;
|
|
95
95
|
readonly index: string;
|
|
96
96
|
readonly route: string | Record<string, unknown>;
|
|
97
97
|
}, {}, 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":"menu-item.d.ts","sourceRoot":"","sources":["../../../menu-item/src/menu-item.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,aAAa;IACxB;;OAEG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;
|
|
1
|
+
{"version":3,"file":"menu-item.d.ts","sourceRoot":"","sources":["../../../menu-item/src/menu-item.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,aAAa;IACxB;;OAEG;;;;;IAKH;;;OAGG;;;;;IAKH;;;OAGG;;uBAEmC,QAAQ,CAAC,SAAS,CAAC;;;IAGzD;;OAEG;;uBAEyB,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;;CAG9D,CAAA;AAEV,MAAM,MAAM,aAAa,GAAG,gBAAgB,CAAC,OAAO,aAAa,CAAC,CAAA;AAElE;;GAEG;AACH,eAAO,MAAM,aAAa;mBACT,MAAM;CACtB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAA"}
|
|
@@ -47,8 +47,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
47
47
|
}>> & Readonly<{
|
|
48
48
|
onClick?: ((index: string) => any) | undefined;
|
|
49
49
|
}>, {
|
|
50
|
-
readonly disabled: boolean;
|
|
51
50
|
readonly icon: import('../../icon').IconValue;
|
|
51
|
+
readonly disabled: boolean;
|
|
52
52
|
readonly index: string;
|
|
53
53
|
readonly route: string | Record<string, unknown>;
|
|
54
54
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
|
package/dist/menu-nav/index.d.ts
CHANGED
|
@@ -111,8 +111,8 @@ export declare const CpMenuNav: import('../utils').SFCWithInstall<import('vue').
|
|
|
111
111
|
}>, {
|
|
112
112
|
readonly mode: import('..').MenuMode;
|
|
113
113
|
readonly type: import('..').MenuType;
|
|
114
|
-
readonly variant: import('..').MenuVariant;
|
|
115
114
|
readonly color: string;
|
|
115
|
+
readonly variant: import('..').MenuVariant;
|
|
116
116
|
readonly shape: import('..').MenuShape;
|
|
117
117
|
readonly collapse: boolean;
|
|
118
118
|
readonly defaultActive: string;
|
|
@@ -100,8 +100,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
100
100
|
}>, {
|
|
101
101
|
readonly mode: import('../../menu').MenuMode;
|
|
102
102
|
readonly type: import('../../menu').MenuType;
|
|
103
|
-
readonly variant: import('../../menu').MenuVariant;
|
|
104
103
|
readonly color: string;
|
|
104
|
+
readonly variant: import('../../menu').MenuVariant;
|
|
105
105
|
readonly shape: import('../../menu').MenuShape;
|
|
106
106
|
readonly collapse: boolean;
|
|
107
107
|
readonly defaultActive: string;
|
|
@@ -128,8 +128,8 @@ export declare const CpNotification: import('../utils').SFCWithInstall<{
|
|
|
128
128
|
}, import('vue').PublicProps, {
|
|
129
129
|
readonly width: string | number;
|
|
130
130
|
readonly type: import('.').NotificationType;
|
|
131
|
-
readonly variant: import('.').NotificationVariant;
|
|
132
131
|
readonly color: string;
|
|
132
|
+
readonly variant: import('.').NotificationVariant;
|
|
133
133
|
readonly shape: import('.').NotificationShape;
|
|
134
134
|
readonly textColor: string;
|
|
135
135
|
readonly title: string;
|
|
@@ -262,8 +262,8 @@ export declare const CpNotification: import('../utils').SFCWithInstall<{
|
|
|
262
262
|
}, {}, {}, {}, {
|
|
263
263
|
readonly width: string | number;
|
|
264
264
|
readonly type: import('.').NotificationType;
|
|
265
|
-
readonly variant: import('.').NotificationVariant;
|
|
266
265
|
readonly color: string;
|
|
266
|
+
readonly variant: import('.').NotificationVariant;
|
|
267
267
|
readonly shape: import('.').NotificationShape;
|
|
268
268
|
readonly textColor: string;
|
|
269
269
|
readonly title: string;
|
|
@@ -398,8 +398,8 @@ export declare const CpNotification: import('../utils').SFCWithInstall<{
|
|
|
398
398
|
}, string, {
|
|
399
399
|
readonly width: string | number;
|
|
400
400
|
readonly type: import('.').NotificationType;
|
|
401
|
-
readonly variant: import('.').NotificationVariant;
|
|
402
401
|
readonly color: string;
|
|
402
|
+
readonly variant: import('.').NotificationVariant;
|
|
403
403
|
readonly shape: import('.').NotificationShape;
|
|
404
404
|
readonly textColor: string;
|
|
405
405
|
readonly title: string;
|
|
@@ -219,8 +219,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
219
219
|
}>, {
|
|
220
220
|
readonly width: string | number;
|
|
221
221
|
readonly type: import('./notification').NotificationType;
|
|
222
|
-
readonly variant: import('./notification').NotificationVariant;
|
|
223
222
|
readonly color: string;
|
|
223
|
+
readonly variant: import('./notification').NotificationVariant;
|
|
224
224
|
readonly shape: import('./notification').NotificationShape;
|
|
225
225
|
readonly textColor: string;
|
|
226
226
|
readonly title: string;
|
|
@@ -92,8 +92,8 @@ export declare const CpPagination: import('../utils').SFCWithInstall<{
|
|
|
92
92
|
readonly total: number;
|
|
93
93
|
readonly pageSizes: number[];
|
|
94
94
|
readonly type: import('.').PaginationType;
|
|
95
|
-
readonly disabled: boolean;
|
|
96
95
|
readonly color: string;
|
|
96
|
+
readonly disabled: boolean;
|
|
97
97
|
readonly shape: import('.').PaginationShape;
|
|
98
98
|
readonly layout: string;
|
|
99
99
|
readonly currentPage: number;
|
|
@@ -182,8 +182,8 @@ export declare const CpPagination: import('../utils').SFCWithInstall<{
|
|
|
182
182
|
readonly total: number;
|
|
183
183
|
readonly pageSizes: number[];
|
|
184
184
|
readonly type: import('.').PaginationType;
|
|
185
|
-
readonly disabled: boolean;
|
|
186
185
|
readonly color: string;
|
|
186
|
+
readonly disabled: boolean;
|
|
187
187
|
readonly shape: import('.').PaginationShape;
|
|
188
188
|
readonly layout: string;
|
|
189
189
|
readonly currentPage: number;
|
|
@@ -274,8 +274,8 @@ export declare const CpPagination: import('../utils').SFCWithInstall<{
|
|
|
274
274
|
readonly total: number;
|
|
275
275
|
readonly pageSizes: number[];
|
|
276
276
|
readonly type: import('.').PaginationType;
|
|
277
|
-
readonly disabled: boolean;
|
|
278
277
|
readonly color: string;
|
|
278
|
+
readonly disabled: boolean;
|
|
279
279
|
readonly shape: import('.').PaginationShape;
|
|
280
280
|
readonly layout: string;
|
|
281
281
|
readonly currentPage: number;
|
|
@@ -215,8 +215,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
215
215
|
readonly total: number;
|
|
216
216
|
readonly pageSizes: number[];
|
|
217
217
|
readonly type: import('./pagination').PaginationType;
|
|
218
|
-
readonly disabled: boolean;
|
|
219
218
|
readonly color: string;
|
|
219
|
+
readonly disabled: boolean;
|
|
220
220
|
readonly shape: import('./pagination').PaginationShape;
|
|
221
221
|
readonly layout: string;
|
|
222
222
|
readonly currentPage: number;
|
|
@@ -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;
|
package/dist/progress/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/radio/index.d.ts
CHANGED
|
@@ -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)[];
|
package/dist/slider/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/sub-menu/index.d.ts
CHANGED
|
@@ -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;;
|
|
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>;
|
package/dist/switch/index.d.ts
CHANGED
|
@@ -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;
|