@kiva/kv-components 8.18.2 → 8.19.0
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/vue/KvAtbModal.vue.d.ts +15 -0
- package/dist/vue/KvButton.js +12 -12
- package/dist/vue/KvButton.vue.d.ts +15 -0
- package/dist/vue/KvButton2.js +77 -53
- package/dist/vue/KvCartModal.vue.d.ts +15 -0
- package/dist/vue/KvCheckoutReceipt.vue.d.ts +15 -0
- package/dist/vue/KvClassicLoanCard.vue.d.ts +60 -0
- package/dist/vue/KvCommentsAdd.vue.d.ts +15 -0
- package/dist/vue/KvCommentsContainer.vue.d.ts +45 -0
- package/dist/vue/KvCommentsList.vue.d.ts +30 -0
- package/dist/vue/KvCommentsListItem.vue.d.ts +30 -0
- package/dist/vue/KvCommentsReplyButton.vue.d.ts +15 -0
- package/dist/vue/KvCompactLoanCard.vue.d.ts +30 -0
- package/dist/vue/KvLendAmountButton.vue.d.ts +15 -0
- package/dist/vue/KvLendCta.vue.d.ts +30 -0
- package/dist/vue/KvLoanActivities.vue.d.ts +30 -0
- package/dist/vue/KvPill.vue.d.ts +1 -1
- package/dist/vue/KvVotingCard.vue.d.ts +15 -0
- package/dist/vue/KvVotingCardV2.vue.d.ts +15 -0
- package/dist/vue/KvWideLoanCard.vue.d.ts +30 -0
- package/package.json +2 -2
|
@@ -111,15 +111,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
111
111
|
default: string;
|
|
112
112
|
validator(value: string): boolean;
|
|
113
113
|
};
|
|
114
|
+
size: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
default: string;
|
|
117
|
+
validator(value: string): boolean;
|
|
118
|
+
};
|
|
114
119
|
}>, {
|
|
115
120
|
buttonRef: import('vue').Ref<any, any>;
|
|
116
121
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
117
122
|
computedClass: import('vue').ComputedRef<string>;
|
|
118
123
|
computedType: import('vue').ComputedRef<string>;
|
|
124
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
119
125
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
120
126
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
121
127
|
onClick: (event: any) => void;
|
|
128
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
129
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
122
130
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
131
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
123
132
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
124
133
|
to: {
|
|
125
134
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -144,11 +153,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
144
153
|
default: string;
|
|
145
154
|
validator(value: string): boolean;
|
|
146
155
|
};
|
|
156
|
+
size: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
default: string;
|
|
159
|
+
validator(value: string): boolean;
|
|
160
|
+
};
|
|
147
161
|
}>> & Readonly<{
|
|
148
162
|
onClick?: (...args: any[]) => any;
|
|
149
163
|
}>, {
|
|
150
164
|
to: string | Record<string, any>;
|
|
151
165
|
type: string;
|
|
166
|
+
size: string;
|
|
152
167
|
href: string;
|
|
153
168
|
variant: string;
|
|
154
169
|
state: string;
|
|
@@ -490,15 +505,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
490
505
|
default: string;
|
|
491
506
|
validator(value: string): boolean;
|
|
492
507
|
};
|
|
508
|
+
size: {
|
|
509
|
+
type: StringConstructor;
|
|
510
|
+
default: string;
|
|
511
|
+
validator(value: string): boolean;
|
|
512
|
+
};
|
|
493
513
|
}>, {
|
|
494
514
|
buttonRef: import('vue').Ref<any, any>;
|
|
495
515
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
496
516
|
computedClass: import('vue').ComputedRef<string>;
|
|
497
517
|
computedType: import('vue').ComputedRef<string>;
|
|
518
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
498
519
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
499
520
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
500
521
|
onClick: (event: any) => void;
|
|
522
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
523
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
501
524
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
525
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
502
526
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
503
527
|
to: {
|
|
504
528
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -523,11 +547,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
523
547
|
default: string;
|
|
524
548
|
validator(value: string): boolean;
|
|
525
549
|
};
|
|
550
|
+
size: {
|
|
551
|
+
type: StringConstructor;
|
|
552
|
+
default: string;
|
|
553
|
+
validator(value: string): boolean;
|
|
554
|
+
};
|
|
526
555
|
}>> & Readonly<{
|
|
527
556
|
onClick?: (...args: any[]) => any;
|
|
528
557
|
}>, {
|
|
529
558
|
to: string | Record<string, any>;
|
|
530
559
|
type: string;
|
|
560
|
+
size: string;
|
|
531
561
|
href: string;
|
|
532
562
|
variant: string;
|
|
533
563
|
state: string;
|
|
@@ -666,15 +696,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
666
696
|
default: string;
|
|
667
697
|
validator(value: string): boolean;
|
|
668
698
|
};
|
|
699
|
+
size: {
|
|
700
|
+
type: StringConstructor;
|
|
701
|
+
default: string;
|
|
702
|
+
validator(value: string): boolean;
|
|
703
|
+
};
|
|
669
704
|
}>, {
|
|
670
705
|
buttonRef: import('vue').Ref<any, any>;
|
|
671
706
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
672
707
|
computedClass: import('vue').ComputedRef<string>;
|
|
673
708
|
computedType: import('vue').ComputedRef<string>;
|
|
709
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
674
710
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
675
711
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
676
712
|
onClick: (event: any) => void;
|
|
713
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
714
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
677
715
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
716
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
678
717
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
679
718
|
to: {
|
|
680
719
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -699,11 +738,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
699
738
|
default: string;
|
|
700
739
|
validator(value: string): boolean;
|
|
701
740
|
};
|
|
741
|
+
size: {
|
|
742
|
+
type: StringConstructor;
|
|
743
|
+
default: string;
|
|
744
|
+
validator(value: string): boolean;
|
|
745
|
+
};
|
|
702
746
|
}>> & Readonly<{
|
|
703
747
|
onClick?: (...args: any[]) => any;
|
|
704
748
|
}>, {
|
|
705
749
|
to: string | Record<string, any>;
|
|
706
750
|
type: string;
|
|
751
|
+
size: string;
|
|
707
752
|
href: string;
|
|
708
753
|
variant: string;
|
|
709
754
|
state: string;
|
|
@@ -145,15 +145,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
145
145
|
default: string;
|
|
146
146
|
validator(value: string): boolean;
|
|
147
147
|
};
|
|
148
|
+
size: {
|
|
149
|
+
type: StringConstructor;
|
|
150
|
+
default: string;
|
|
151
|
+
validator(value: string): boolean;
|
|
152
|
+
};
|
|
148
153
|
}>, {
|
|
149
154
|
buttonRef: import('vue').Ref<any, any>;
|
|
150
155
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
151
156
|
computedClass: import('vue').ComputedRef<string>;
|
|
152
157
|
computedType: import('vue').ComputedRef<string>;
|
|
158
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
153
159
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
154
160
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
155
161
|
onClick: (event: any) => void;
|
|
162
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
163
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
156
164
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
165
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
157
166
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
158
167
|
to: {
|
|
159
168
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -178,11 +187,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
178
187
|
default: string;
|
|
179
188
|
validator(value: string): boolean;
|
|
180
189
|
};
|
|
190
|
+
size: {
|
|
191
|
+
type: StringConstructor;
|
|
192
|
+
default: string;
|
|
193
|
+
validator(value: string): boolean;
|
|
194
|
+
};
|
|
181
195
|
}>> & Readonly<{
|
|
182
196
|
onClick?: (...args: any[]) => any;
|
|
183
197
|
}>, {
|
|
184
198
|
to: string | Record<string, any>;
|
|
185
199
|
type: string;
|
|
200
|
+
size: string;
|
|
186
201
|
href: string;
|
|
187
202
|
variant: string;
|
|
188
203
|
state: string;
|
|
@@ -321,15 +336,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
321
336
|
default: string;
|
|
322
337
|
validator(value: string): boolean;
|
|
323
338
|
};
|
|
339
|
+
size: {
|
|
340
|
+
type: StringConstructor;
|
|
341
|
+
default: string;
|
|
342
|
+
validator(value: string): boolean;
|
|
343
|
+
};
|
|
324
344
|
}>, {
|
|
325
345
|
buttonRef: import('vue').Ref<any, any>;
|
|
326
346
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
327
347
|
computedClass: import('vue').ComputedRef<string>;
|
|
328
348
|
computedType: import('vue').ComputedRef<string>;
|
|
349
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
329
350
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
330
351
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
331
352
|
onClick: (event: any) => void;
|
|
353
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
354
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
332
355
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
356
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
333
357
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
334
358
|
to: {
|
|
335
359
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -354,11 +378,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
354
378
|
default: string;
|
|
355
379
|
validator(value: string): boolean;
|
|
356
380
|
};
|
|
381
|
+
size: {
|
|
382
|
+
type: StringConstructor;
|
|
383
|
+
default: string;
|
|
384
|
+
validator(value: string): boolean;
|
|
385
|
+
};
|
|
357
386
|
}>> & Readonly<{
|
|
358
387
|
onClick?: (...args: any[]) => any;
|
|
359
388
|
}>, {
|
|
360
389
|
to: string | Record<string, any>;
|
|
361
390
|
type: string;
|
|
391
|
+
size: string;
|
|
362
392
|
href: string;
|
|
363
393
|
variant: string;
|
|
364
394
|
state: string;
|
|
@@ -98,15 +98,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
98
|
default: string;
|
|
99
99
|
validator(value: string): boolean;
|
|
100
100
|
};
|
|
101
|
+
size: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
validator(value: string): boolean;
|
|
105
|
+
};
|
|
101
106
|
}>, {
|
|
102
107
|
buttonRef: import('vue').Ref<any, any>;
|
|
103
108
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
104
109
|
computedClass: import('vue').ComputedRef<string>;
|
|
105
110
|
computedType: import('vue').ComputedRef<string>;
|
|
111
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
106
112
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
107
113
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
108
114
|
onClick: (event: any) => void;
|
|
115
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
116
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
109
117
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
118
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
110
119
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
111
120
|
to: {
|
|
112
121
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -131,11 +140,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
131
140
|
default: string;
|
|
132
141
|
validator(value: string): boolean;
|
|
133
142
|
};
|
|
143
|
+
size: {
|
|
144
|
+
type: StringConstructor;
|
|
145
|
+
default: string;
|
|
146
|
+
validator(value: string): boolean;
|
|
147
|
+
};
|
|
134
148
|
}>> & Readonly<{
|
|
135
149
|
onClick?: (...args: any[]) => any;
|
|
136
150
|
}>, {
|
|
137
151
|
to: string | Record<string, any>;
|
|
138
152
|
type: string;
|
|
153
|
+
size: string;
|
|
139
154
|
href: string;
|
|
140
155
|
variant: string;
|
|
141
156
|
state: string;
|
|
@@ -274,15 +289,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
274
289
|
default: string;
|
|
275
290
|
validator(value: string): boolean;
|
|
276
291
|
};
|
|
292
|
+
size: {
|
|
293
|
+
type: StringConstructor;
|
|
294
|
+
default: string;
|
|
295
|
+
validator(value: string): boolean;
|
|
296
|
+
};
|
|
277
297
|
}>, {
|
|
278
298
|
buttonRef: import('vue').Ref<any, any>;
|
|
279
299
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
280
300
|
computedClass: import('vue').ComputedRef<string>;
|
|
281
301
|
computedType: import('vue').ComputedRef<string>;
|
|
302
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
282
303
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
283
304
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
284
305
|
onClick: (event: any) => void;
|
|
306
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
307
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
285
308
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
309
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
286
310
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
287
311
|
to: {
|
|
288
312
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -307,11 +331,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
307
331
|
default: string;
|
|
308
332
|
validator(value: string): boolean;
|
|
309
333
|
};
|
|
334
|
+
size: {
|
|
335
|
+
type: StringConstructor;
|
|
336
|
+
default: string;
|
|
337
|
+
validator(value: string): boolean;
|
|
338
|
+
};
|
|
310
339
|
}>> & Readonly<{
|
|
311
340
|
onClick?: (...args: any[]) => any;
|
|
312
341
|
}>, {
|
|
313
342
|
to: string | Record<string, any>;
|
|
314
343
|
type: string;
|
|
344
|
+
size: string;
|
|
315
345
|
href: string;
|
|
316
346
|
variant: string;
|
|
317
347
|
state: string;
|
|
@@ -25,15 +25,24 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25
25
|
default: string;
|
|
26
26
|
validator(value: string): boolean;
|
|
27
27
|
};
|
|
28
|
+
size: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
validator(value: string): boolean;
|
|
32
|
+
};
|
|
28
33
|
}>, {
|
|
29
34
|
buttonRef: import('vue').Ref<any, any>;
|
|
30
35
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
31
36
|
computedClass: import('vue').ComputedRef<string>;
|
|
32
37
|
computedType: import('vue').ComputedRef<string>;
|
|
38
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
33
39
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
34
40
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
35
41
|
onClick: (event: any) => void;
|
|
42
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
43
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
36
44
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
45
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
37
46
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
38
47
|
to: {
|
|
39
48
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -58,11 +67,17 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
58
67
|
default: string;
|
|
59
68
|
validator(value: string): boolean;
|
|
60
69
|
};
|
|
70
|
+
size: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
validator(value: string): boolean;
|
|
74
|
+
};
|
|
61
75
|
}>> & Readonly<{
|
|
62
76
|
onClick?: (...args: any[]) => any;
|
|
63
77
|
}>, {
|
|
64
78
|
to: string | Record<string, any>;
|
|
65
79
|
type: string;
|
|
80
|
+
size: string;
|
|
66
81
|
href: string;
|
|
67
82
|
variant: string;
|
|
68
83
|
state: string;
|
|
@@ -938,15 +938,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
938
938
|
default: string;
|
|
939
939
|
validator(value: string): boolean;
|
|
940
940
|
};
|
|
941
|
+
size: {
|
|
942
|
+
type: StringConstructor;
|
|
943
|
+
default: string;
|
|
944
|
+
validator(value: string): boolean;
|
|
945
|
+
};
|
|
941
946
|
}>, {
|
|
942
947
|
buttonRef: import('vue').Ref<any, any>;
|
|
943
948
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
944
949
|
computedClass: import('vue').ComputedRef<string>;
|
|
945
950
|
computedType: import('vue').ComputedRef<string>;
|
|
951
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
946
952
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
947
953
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
948
954
|
onClick: (event: any) => void;
|
|
955
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
956
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
949
957
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
958
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
950
959
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
951
960
|
to: {
|
|
952
961
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -971,11 +980,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
971
980
|
default: string;
|
|
972
981
|
validator(value: string): boolean;
|
|
973
982
|
};
|
|
983
|
+
size: {
|
|
984
|
+
type: StringConstructor;
|
|
985
|
+
default: string;
|
|
986
|
+
validator(value: string): boolean;
|
|
987
|
+
};
|
|
974
988
|
}>> & Readonly<{
|
|
975
989
|
onClick?: (...args: any[]) => any;
|
|
976
990
|
}>, {
|
|
977
991
|
to: string | Record<string, any>;
|
|
978
992
|
type: string;
|
|
993
|
+
size: string;
|
|
979
994
|
href: string;
|
|
980
995
|
variant: string;
|
|
981
996
|
state: string;
|
|
@@ -1032,15 +1047,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1032
1047
|
default: string;
|
|
1033
1048
|
validator(value: string): boolean;
|
|
1034
1049
|
};
|
|
1050
|
+
size: {
|
|
1051
|
+
type: StringConstructor;
|
|
1052
|
+
default: string;
|
|
1053
|
+
validator(value: string): boolean;
|
|
1054
|
+
};
|
|
1035
1055
|
}>, {
|
|
1036
1056
|
buttonRef: import('vue').Ref<any, any>;
|
|
1037
1057
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
1038
1058
|
computedClass: import('vue').ComputedRef<string>;
|
|
1039
1059
|
computedType: import('vue').ComputedRef<string>;
|
|
1060
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
1040
1061
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
1041
1062
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
1042
1063
|
onClick: (event: any) => void;
|
|
1064
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
1065
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
1043
1066
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
1067
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
1044
1068
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1045
1069
|
to: {
|
|
1046
1070
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -1065,11 +1089,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1065
1089
|
default: string;
|
|
1066
1090
|
validator(value: string): boolean;
|
|
1067
1091
|
};
|
|
1092
|
+
size: {
|
|
1093
|
+
type: StringConstructor;
|
|
1094
|
+
default: string;
|
|
1095
|
+
validator(value: string): boolean;
|
|
1096
|
+
};
|
|
1068
1097
|
}>> & Readonly<{
|
|
1069
1098
|
onClick?: (...args: any[]) => any;
|
|
1070
1099
|
}>, {
|
|
1071
1100
|
to: string | Record<string, any>;
|
|
1072
1101
|
type: string;
|
|
1102
|
+
size: string;
|
|
1073
1103
|
href: string;
|
|
1074
1104
|
variant: string;
|
|
1075
1105
|
state: string;
|
|
@@ -67,15 +67,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
67
67
|
default: string;
|
|
68
68
|
validator(value: string): boolean;
|
|
69
69
|
};
|
|
70
|
+
size: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
validator(value: string): boolean;
|
|
74
|
+
};
|
|
70
75
|
}>, {
|
|
71
76
|
buttonRef: import('vue').Ref<any, any>;
|
|
72
77
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
73
78
|
computedClass: import('vue').ComputedRef<string>;
|
|
74
79
|
computedType: import('vue').ComputedRef<string>;
|
|
80
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
75
81
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
76
82
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
77
83
|
onClick: (event: any) => void;
|
|
84
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
85
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
78
86
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
87
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
79
88
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
80
89
|
to: {
|
|
81
90
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -100,11 +109,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
100
109
|
default: string;
|
|
101
110
|
validator(value: string): boolean;
|
|
102
111
|
};
|
|
112
|
+
size: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: string;
|
|
115
|
+
validator(value: string): boolean;
|
|
116
|
+
};
|
|
103
117
|
}>> & Readonly<{
|
|
104
118
|
onClick?: (...args: any[]) => any;
|
|
105
119
|
}>, {
|
|
106
120
|
to: string | Record<string, any>;
|
|
107
121
|
type: string;
|
|
122
|
+
size: string;
|
|
108
123
|
href: string;
|
|
109
124
|
variant: string;
|
|
110
125
|
state: string;
|
|
@@ -346,15 +346,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
346
346
|
default: string;
|
|
347
347
|
validator(value: string): boolean;
|
|
348
348
|
};
|
|
349
|
+
size: {
|
|
350
|
+
type: StringConstructor;
|
|
351
|
+
default: string;
|
|
352
|
+
validator(value: string): boolean;
|
|
353
|
+
};
|
|
349
354
|
}>, {
|
|
350
355
|
buttonRef: import('vue').Ref<any, any>;
|
|
351
356
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
352
357
|
computedClass: import('vue').ComputedRef<string>;
|
|
353
358
|
computedType: import('vue').ComputedRef<string>;
|
|
359
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
354
360
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
355
361
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
356
362
|
onClick: (event: any) => void;
|
|
363
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
364
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
357
365
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
366
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
358
367
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
359
368
|
to: {
|
|
360
369
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -379,11 +388,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
379
388
|
default: string;
|
|
380
389
|
validator(value: string): boolean;
|
|
381
390
|
};
|
|
391
|
+
size: {
|
|
392
|
+
type: StringConstructor;
|
|
393
|
+
default: string;
|
|
394
|
+
validator(value: string): boolean;
|
|
395
|
+
};
|
|
382
396
|
}>> & Readonly<{
|
|
383
397
|
onClick?: (...args: any[]) => any;
|
|
384
398
|
}>, {
|
|
385
399
|
to: string | Record<string, any>;
|
|
386
400
|
type: string;
|
|
401
|
+
size: string;
|
|
387
402
|
href: string;
|
|
388
403
|
variant: string;
|
|
389
404
|
state: string;
|
|
@@ -440,15 +455,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
440
455
|
default: string;
|
|
441
456
|
validator(value: string): boolean;
|
|
442
457
|
};
|
|
458
|
+
size: {
|
|
459
|
+
type: StringConstructor;
|
|
460
|
+
default: string;
|
|
461
|
+
validator(value: string): boolean;
|
|
462
|
+
};
|
|
443
463
|
}>, {
|
|
444
464
|
buttonRef: import('vue').Ref<any, any>;
|
|
445
465
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
446
466
|
computedClass: import('vue').ComputedRef<string>;
|
|
447
467
|
computedType: import('vue').ComputedRef<string>;
|
|
468
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
448
469
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
449
470
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
450
471
|
onClick: (event: any) => void;
|
|
472
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
473
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
451
474
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
475
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
452
476
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
453
477
|
to: {
|
|
454
478
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -473,11 +497,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
473
497
|
default: string;
|
|
474
498
|
validator(value: string): boolean;
|
|
475
499
|
};
|
|
500
|
+
size: {
|
|
501
|
+
type: StringConstructor;
|
|
502
|
+
default: string;
|
|
503
|
+
validator(value: string): boolean;
|
|
504
|
+
};
|
|
476
505
|
}>> & Readonly<{
|
|
477
506
|
onClick?: (...args: any[]) => any;
|
|
478
507
|
}>, {
|
|
479
508
|
to: string | Record<string, any>;
|
|
480
509
|
type: string;
|
|
510
|
+
size: string;
|
|
481
511
|
href: string;
|
|
482
512
|
variant: string;
|
|
483
513
|
state: string;
|
|
@@ -626,15 +626,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
626
626
|
default: string;
|
|
627
627
|
validator(value: string): boolean;
|
|
628
628
|
};
|
|
629
|
+
size: {
|
|
630
|
+
type: StringConstructor;
|
|
631
|
+
default: string;
|
|
632
|
+
validator(value: string): boolean;
|
|
633
|
+
};
|
|
629
634
|
}>, {
|
|
630
635
|
buttonRef: import('vue').Ref<any, any>;
|
|
631
636
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
632
637
|
computedClass: import('vue').ComputedRef<string>;
|
|
633
638
|
computedType: import('vue').ComputedRef<string>;
|
|
639
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
634
640
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
635
641
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
636
642
|
onClick: (event: any) => void;
|
|
643
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
644
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
637
645
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
646
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
638
647
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
639
648
|
to: {
|
|
640
649
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -659,11 +668,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
659
668
|
default: string;
|
|
660
669
|
validator(value: string): boolean;
|
|
661
670
|
};
|
|
671
|
+
size: {
|
|
672
|
+
type: StringConstructor;
|
|
673
|
+
default: string;
|
|
674
|
+
validator(value: string): boolean;
|
|
675
|
+
};
|
|
662
676
|
}>> & Readonly<{
|
|
663
677
|
onClick?: (...args: any[]) => any;
|
|
664
678
|
}>, {
|
|
665
679
|
to: string | Record<string, any>;
|
|
666
680
|
type: string;
|
|
681
|
+
size: string;
|
|
667
682
|
href: string;
|
|
668
683
|
variant: string;
|
|
669
684
|
state: string;
|
|
@@ -720,15 +735,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
720
735
|
default: string;
|
|
721
736
|
validator(value: string): boolean;
|
|
722
737
|
};
|
|
738
|
+
size: {
|
|
739
|
+
type: StringConstructor;
|
|
740
|
+
default: string;
|
|
741
|
+
validator(value: string): boolean;
|
|
742
|
+
};
|
|
723
743
|
}>, {
|
|
724
744
|
buttonRef: import('vue').Ref<any, any>;
|
|
725
745
|
buttonInnerRef: import('vue').Ref<any, any>;
|
|
726
746
|
computedClass: import('vue').ComputedRef<string>;
|
|
727
747
|
computedType: import('vue').ComputedRef<string>;
|
|
748
|
+
heightClass: import('vue').ComputedRef<"tw-min-h-4" | "tw-min-h-6">;
|
|
728
749
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
729
750
|
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
730
751
|
onClick: (event: any) => void;
|
|
752
|
+
paddingClass: import('vue').ComputedRef<"tw-py-0.5 tw-px-2" | "tw-py-1 tw-px-3">;
|
|
753
|
+
roundedClass: import('vue').ComputedRef<"tw-rounded-sm" | "tw-rounded">;
|
|
731
754
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
755
|
+
textClass: import('vue').ComputedRef<"" | "tw-text-label">;
|
|
732
756
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
733
757
|
to: {
|
|
734
758
|
type: (StringConstructor | ObjectConstructor)[];
|
|
@@ -753,11 +777,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
753
777
|
default: string;
|
|
754
778
|
validator(value: string): boolean;
|
|
755
779
|
};
|
|
780
|
+
size: {
|
|
781
|
+
type: StringConstructor;
|
|
782
|
+
default: string;
|
|
783
|
+
validator(value: string): boolean;
|
|
784
|
+
};
|
|
756
785
|
}>> & Readonly<{
|
|
757
786
|
onClick?: (...args: any[]) => any;
|
|
758
787
|
}>, {
|
|
759
788
|
to: string | Record<string, any>;
|
|
760
789
|
type: string;
|
|
790
|
+
size: string;
|
|
761
791
|
href: string;
|
|
762
792
|
variant: string;
|
|
763
793
|
state: string;
|
package/dist/vue/KvPill.vue.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
19
|
}>> & Readonly<{}>, {
|
|
20
|
-
bgClass: string;
|
|
21
20
|
roundedClass: string;
|
|
21
|
+
bgClass: string;
|
|
22
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
23
|
export default _default;
|