@kiva/kv-components 8.2.0 → 8.3.1
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/AGENTS.md +1 -1
- package/CLAUDE.md +4 -4
- package/dist/vue/KvActivityRow.vue.d.ts +11 -0
- package/dist/vue/KvAtbModal.vue.d.ts +1 -1
- package/dist/vue/KvButton.vue.d.ts +1 -1
- package/dist/vue/KvCardFrame.vue.d.ts +1 -1
- package/dist/vue/KvCartModal.vue.d.ts +1 -1
- package/dist/vue/KvCheckoutReceipt.vue.d.ts +1 -1
- package/dist/vue/KvClassicLoanCard.vue.d.ts +15 -4
- package/dist/vue/KvCommentsAdd.vue.d.ts +12 -1
- package/dist/vue/KvCommentsContainer.vue.d.ts +36 -3
- package/dist/vue/KvCommentsList.vue.d.ts +24 -2
- package/dist/vue/KvCommentsListItem.vue.d.ts +24 -2
- package/dist/vue/KvCommentsReplyButton.vue.d.ts +1 -1
- package/dist/vue/KvCompactLoanCard.vue.d.ts +2 -2
- package/dist/vue/KvDatePicker.vue.d.ts +1 -1
- package/dist/vue/KvImpactVerticalSelector.vue.d.ts +1 -1
- package/dist/vue/KvInlineActivityCard.vue.d.ts +11 -0
- package/dist/vue/KvInlineActivityFeed.vue.d.ts +11 -0
- package/dist/vue/KvLendAmountButton.vue.d.ts +1 -1
- package/dist/vue/KvLendCta.vue.d.ts +2 -2
- package/dist/vue/KvLoanActivities.vue.d.ts +13 -2
- package/dist/vue/KvSecondaryNav.vue.d.ts +1 -1
- package/dist/vue/KvThemeProvider.vue.d.ts +1 -1
- package/dist/vue/KvUserAvatar.css +1 -0
- package/dist/vue/KvUserAvatar.js +41 -44
- package/dist/vue/KvUserAvatar.vue.d.ts +11 -0
- package/dist/vue/KvUserAvatar2.js +33 -23
- package/dist/vue/KvVotingCard.vue.d.ts +1 -1
- package/dist/vue/KvVotingCardV2.vue.d.ts +1 -1
- package/dist/vue/KvWideLoanCard.vue.d.ts +2 -2
- package/dist/vue/KvWwwHeader/KvHeaderLinkBar.vue.d.ts +11 -0
- package/dist/vue/KvWwwHeader.vue.d.ts +12 -1
- package/docs/ai-documentation-prompt.md +306 -0
- package/docs/ai-stories-prompt.md +630 -0
- package/docs/component-documentation-checklist.md +258 -0
- package/docs/component-documentation-guide.md +364 -0
- package/docs/component-stories-checklist.md +326 -0
- package/docs/component-stories-guide.md +765 -0
- package/docs/how-to-use-ai-prompts.md +331 -0
- package/package.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -13,7 +13,7 @@ Accessible UI component library built with Vue 3 Composition API, Tailwind CSS,
|
|
|
13
13
|
|
|
14
14
|
## Getting Started
|
|
15
15
|
|
|
16
|
-
**
|
|
16
|
+
**Run `nvm use` before any terminal commands** (npm, node, etc.) to ensure you're using the correct Node.js version specified in [.nvmrc](../../../.nvmrc). This is not required for file reading or editing operations.
|
|
17
17
|
|
|
18
18
|
## Component Development Patterns
|
|
19
19
|
|
package/CLAUDE.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
# CLAUDE.md
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
@AGENTS.md
|
|
6
6
|
|
|
7
|
-
> **Note**: This file should only contain Claude-specific configurations or workarounds as a last resort.
|
|
7
|
+
> **Note**: This file imports [AGENTS.md](./AGENTS.md) which contains all general development instructions, patterns, and guidelines for this repository. This file should only contain Claude Code-specific configurations or workarounds as a last resort.
|
|
8
8
|
|
|
9
9
|
## Claude-Specific Configuration
|
|
10
10
|
|
|
@@ -26,6 +26,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
default: boolean;
|
|
28
28
|
};
|
|
29
|
+
theme: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
validator(value: string): boolean;
|
|
33
|
+
};
|
|
29
34
|
}>, {
|
|
30
35
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
31
36
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -54,11 +59,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
54
59
|
type: BooleanConstructor;
|
|
55
60
|
default: boolean;
|
|
56
61
|
};
|
|
62
|
+
theme: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
validator(value: string): boolean;
|
|
66
|
+
};
|
|
57
67
|
}>> & Readonly<{}>, {
|
|
58
68
|
lenderName: string;
|
|
59
69
|
lenderImageUrl: string;
|
|
60
70
|
isSmall: boolean;
|
|
61
71
|
showCssPlaceholder: boolean;
|
|
72
|
+
theme: string;
|
|
62
73
|
}, {}, {
|
|
63
74
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
64
75
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -240,7 +240,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
240
240
|
computedClass: import('vue').ComputedRef<string>;
|
|
241
241
|
computedType: import('vue').ComputedRef<string>;
|
|
242
242
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
243
|
-
loadingColor: import('vue').ComputedRef<"
|
|
243
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
244
244
|
onClick: (event: any) => void;
|
|
245
245
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
246
246
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -28,7 +28,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
28
28
|
computedClass: import('vue').ComputedRef<string>;
|
|
29
29
|
computedType: import('vue').ComputedRef<string>;
|
|
30
30
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
31
|
-
loadingColor: import('vue').ComputedRef<"
|
|
31
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
32
32
|
onClick: (event: any) => void;
|
|
33
33
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
34
34
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -79,8 +79,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
79
79
|
default: any;
|
|
80
80
|
};
|
|
81
81
|
}>> & Readonly<{}>, {
|
|
82
|
-
tag: string;
|
|
83
82
|
theme: Record<string, any>;
|
|
83
|
+
tag: string;
|
|
84
84
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
85
85
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
86
86
|
export default _default;
|
|
@@ -96,7 +96,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
96
96
|
computedClass: import('vue').ComputedRef<string>;
|
|
97
97
|
computedType: import('vue').ComputedRef<string>;
|
|
98
98
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
99
|
-
loadingColor: import('vue').ComputedRef<"
|
|
99
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
100
100
|
onClick: (event: any) => void;
|
|
101
101
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
102
102
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -83,7 +83,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
83
83
|
computedClass: import('vue').ComputedRef<string>;
|
|
84
84
|
computedType: import('vue').ComputedRef<string>;
|
|
85
85
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
86
|
-
loadingColor: import('vue').ComputedRef<"
|
|
86
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
87
87
|
onClick: (event: any) => void;
|
|
88
88
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
89
89
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -978,7 +978,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
978
978
|
computedClass: import('vue').ComputedRef<string>;
|
|
979
979
|
computedType: import('vue').ComputedRef<string>;
|
|
980
980
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
981
|
-
loadingColor: import('vue').ComputedRef<"
|
|
981
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
982
982
|
onClick: (event: any) => void;
|
|
983
983
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
984
984
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -1072,7 +1072,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1072
1072
|
computedClass: import('vue').ComputedRef<string>;
|
|
1073
1073
|
computedType: import('vue').ComputedRef<string>;
|
|
1074
1074
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
1075
|
-
loadingColor: import('vue').ComputedRef<"
|
|
1075
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
1076
1076
|
onClick: (event: any) => void;
|
|
1077
1077
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
1078
1078
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -1442,6 +1442,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1442
1442
|
type: BooleanConstructor;
|
|
1443
1443
|
default: boolean;
|
|
1444
1444
|
};
|
|
1445
|
+
theme: {
|
|
1446
|
+
type: StringConstructor;
|
|
1447
|
+
default: string;
|
|
1448
|
+
validator(value: string): boolean;
|
|
1449
|
+
};
|
|
1445
1450
|
}>, {
|
|
1446
1451
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
1447
1452
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -1470,11 +1475,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1470
1475
|
type: BooleanConstructor;
|
|
1471
1476
|
default: boolean;
|
|
1472
1477
|
};
|
|
1478
|
+
theme: {
|
|
1479
|
+
type: StringConstructor;
|
|
1480
|
+
default: string;
|
|
1481
|
+
validator(value: string): boolean;
|
|
1482
|
+
};
|
|
1473
1483
|
}>> & Readonly<{}>, {
|
|
1474
1484
|
lenderName: string;
|
|
1475
1485
|
lenderImageUrl: string;
|
|
1476
1486
|
isSmall: boolean;
|
|
1477
1487
|
showCssPlaceholder: boolean;
|
|
1488
|
+
theme: string;
|
|
1478
1489
|
}, {}, {
|
|
1479
1490
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1480
1491
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1905,7 +1916,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1905
1916
|
computedClass: import('vue').ComputedRef<string>;
|
|
1906
1917
|
computedType: import('vue').ComputedRef<string>;
|
|
1907
1918
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
1908
|
-
loadingColor: import('vue').ComputedRef<"
|
|
1919
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
1909
1920
|
onClick: (event: any) => void;
|
|
1910
1921
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
1911
1922
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -1999,7 +2010,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1999
2010
|
computedClass: import('vue').ComputedRef<string>;
|
|
2000
2011
|
computedType: import('vue').ComputedRef<string>;
|
|
2001
2012
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
2002
|
-
loadingColor: import('vue').ComputedRef<"
|
|
2013
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
2003
2014
|
onClick: (event: any) => void;
|
|
2004
2015
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
2005
2016
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
72
|
computedClass: import('vue').ComputedRef<string>;
|
|
73
73
|
computedType: import('vue').ComputedRef<string>;
|
|
74
74
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
75
|
-
loadingColor: import('vue').ComputedRef<"
|
|
75
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
76
76
|
onClick: (event: any) => void;
|
|
77
77
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
78
78
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -256,6 +256,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
256
256
|
type: BooleanConstructor;
|
|
257
257
|
default: boolean;
|
|
258
258
|
};
|
|
259
|
+
theme: {
|
|
260
|
+
type: StringConstructor;
|
|
261
|
+
default: string;
|
|
262
|
+
validator(value: string): boolean;
|
|
263
|
+
};
|
|
259
264
|
}>, {
|
|
260
265
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
261
266
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -284,11 +289,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
284
289
|
type: BooleanConstructor;
|
|
285
290
|
default: boolean;
|
|
286
291
|
};
|
|
292
|
+
theme: {
|
|
293
|
+
type: StringConstructor;
|
|
294
|
+
default: string;
|
|
295
|
+
validator(value: string): boolean;
|
|
296
|
+
};
|
|
287
297
|
}>> & Readonly<{}>, {
|
|
288
298
|
lenderName: string;
|
|
289
299
|
lenderImageUrl: string;
|
|
290
300
|
isSmall: boolean;
|
|
291
301
|
showCssPlaceholder: boolean;
|
|
302
|
+
theme: string;
|
|
292
303
|
}, {}, {
|
|
293
304
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
294
305
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -117,7 +117,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
117
117
|
computedClass: import('vue').ComputedRef<string>;
|
|
118
118
|
computedType: import('vue').ComputedRef<string>;
|
|
119
119
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
120
|
-
loadingColor: import('vue').ComputedRef<"
|
|
120
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
121
121
|
onClick: (event: any) => void;
|
|
122
122
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
123
123
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -301,6 +301,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
301
301
|
type: BooleanConstructor;
|
|
302
302
|
default: boolean;
|
|
303
303
|
};
|
|
304
|
+
theme: {
|
|
305
|
+
type: StringConstructor;
|
|
306
|
+
default: string;
|
|
307
|
+
validator(value: string): boolean;
|
|
308
|
+
};
|
|
304
309
|
}>, {
|
|
305
310
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
306
311
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -329,11 +334,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
329
334
|
type: BooleanConstructor;
|
|
330
335
|
default: boolean;
|
|
331
336
|
};
|
|
337
|
+
theme: {
|
|
338
|
+
type: StringConstructor;
|
|
339
|
+
default: string;
|
|
340
|
+
validator(value: string): boolean;
|
|
341
|
+
};
|
|
332
342
|
}>> & Readonly<{}>, {
|
|
333
343
|
lenderName: string;
|
|
334
344
|
lenderImageUrl: string;
|
|
335
345
|
isSmall: boolean;
|
|
336
346
|
showCssPlaceholder: boolean;
|
|
347
|
+
theme: string;
|
|
337
348
|
}, {}, {
|
|
338
349
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
339
350
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -485,7 +496,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
485
496
|
computedClass: import('vue').ComputedRef<string>;
|
|
486
497
|
computedType: import('vue').ComputedRef<string>;
|
|
487
498
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
488
|
-
loadingColor: import('vue').ComputedRef<"
|
|
499
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
489
500
|
onClick: (event: any) => void;
|
|
490
501
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
491
502
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -661,7 +672,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
661
672
|
computedClass: import('vue').ComputedRef<string>;
|
|
662
673
|
computedType: import('vue').ComputedRef<string>;
|
|
663
674
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
664
|
-
loadingColor: import('vue').ComputedRef<"
|
|
675
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
665
676
|
onClick: (event: any) => void;
|
|
666
677
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
667
678
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -845,6 +856,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
845
856
|
type: BooleanConstructor;
|
|
846
857
|
default: boolean;
|
|
847
858
|
};
|
|
859
|
+
theme: {
|
|
860
|
+
type: StringConstructor;
|
|
861
|
+
default: string;
|
|
862
|
+
validator(value: string): boolean;
|
|
863
|
+
};
|
|
848
864
|
}>, {
|
|
849
865
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
850
866
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -873,11 +889,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
873
889
|
type: BooleanConstructor;
|
|
874
890
|
default: boolean;
|
|
875
891
|
};
|
|
892
|
+
theme: {
|
|
893
|
+
type: StringConstructor;
|
|
894
|
+
default: string;
|
|
895
|
+
validator(value: string): boolean;
|
|
896
|
+
};
|
|
876
897
|
}>> & Readonly<{}>, {
|
|
877
898
|
lenderName: string;
|
|
878
899
|
lenderImageUrl: string;
|
|
879
900
|
isSmall: boolean;
|
|
880
901
|
showCssPlaceholder: boolean;
|
|
902
|
+
theme: string;
|
|
881
903
|
}, {}, {
|
|
882
904
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
883
905
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -899,6 +921,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
899
921
|
type: BooleanConstructor;
|
|
900
922
|
default: boolean;
|
|
901
923
|
};
|
|
924
|
+
theme: {
|
|
925
|
+
type: StringConstructor;
|
|
926
|
+
default: string;
|
|
927
|
+
validator(value: string): boolean;
|
|
928
|
+
};
|
|
902
929
|
}>, {
|
|
903
930
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
904
931
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -927,11 +954,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
927
954
|
type: BooleanConstructor;
|
|
928
955
|
default: boolean;
|
|
929
956
|
};
|
|
957
|
+
theme: {
|
|
958
|
+
type: StringConstructor;
|
|
959
|
+
default: string;
|
|
960
|
+
validator(value: string): boolean;
|
|
961
|
+
};
|
|
930
962
|
}>> & Readonly<{}>, {
|
|
931
963
|
lenderName: string;
|
|
932
964
|
lenderImageUrl: string;
|
|
933
965
|
isSmall: boolean;
|
|
934
966
|
showCssPlaceholder: boolean;
|
|
967
|
+
theme: string;
|
|
935
968
|
}, {}, {
|
|
936
969
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
937
970
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -151,7 +151,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
151
151
|
computedClass: import('vue').ComputedRef<string>;
|
|
152
152
|
computedType: import('vue').ComputedRef<string>;
|
|
153
153
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
154
|
-
loadingColor: import('vue').ComputedRef<"
|
|
154
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
155
155
|
onClick: (event: any) => void;
|
|
156
156
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
157
157
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -327,7 +327,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
327
327
|
computedClass: import('vue').ComputedRef<string>;
|
|
328
328
|
computedType: import('vue').ComputedRef<string>;
|
|
329
329
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
330
|
-
loadingColor: import('vue').ComputedRef<"
|
|
330
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
331
331
|
onClick: (event: any) => void;
|
|
332
332
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
333
333
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -511,6 +511,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
511
511
|
type: BooleanConstructor;
|
|
512
512
|
default: boolean;
|
|
513
513
|
};
|
|
514
|
+
theme: {
|
|
515
|
+
type: StringConstructor;
|
|
516
|
+
default: string;
|
|
517
|
+
validator(value: string): boolean;
|
|
518
|
+
};
|
|
514
519
|
}>, {
|
|
515
520
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
516
521
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -539,11 +544,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
539
544
|
type: BooleanConstructor;
|
|
540
545
|
default: boolean;
|
|
541
546
|
};
|
|
547
|
+
theme: {
|
|
548
|
+
type: StringConstructor;
|
|
549
|
+
default: string;
|
|
550
|
+
validator(value: string): boolean;
|
|
551
|
+
};
|
|
542
552
|
}>> & Readonly<{}>, {
|
|
543
553
|
lenderName: string;
|
|
544
554
|
lenderImageUrl: string;
|
|
545
555
|
isSmall: boolean;
|
|
546
556
|
showCssPlaceholder: boolean;
|
|
557
|
+
theme: string;
|
|
547
558
|
}, {}, {
|
|
548
559
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
549
560
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -565,6 +576,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
565
576
|
type: BooleanConstructor;
|
|
566
577
|
default: boolean;
|
|
567
578
|
};
|
|
579
|
+
theme: {
|
|
580
|
+
type: StringConstructor;
|
|
581
|
+
default: string;
|
|
582
|
+
validator(value: string): boolean;
|
|
583
|
+
};
|
|
568
584
|
}>, {
|
|
569
585
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
570
586
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -593,11 +609,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
593
609
|
type: BooleanConstructor;
|
|
594
610
|
default: boolean;
|
|
595
611
|
};
|
|
612
|
+
theme: {
|
|
613
|
+
type: StringConstructor;
|
|
614
|
+
default: string;
|
|
615
|
+
validator(value: string): boolean;
|
|
616
|
+
};
|
|
596
617
|
}>> & Readonly<{}>, {
|
|
597
618
|
lenderName: string;
|
|
598
619
|
lenderImageUrl: string;
|
|
599
620
|
isSmall: boolean;
|
|
600
621
|
showCssPlaceholder: boolean;
|
|
622
|
+
theme: string;
|
|
601
623
|
}, {}, {
|
|
602
624
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
603
625
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -104,7 +104,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
104
104
|
computedClass: import('vue').ComputedRef<string>;
|
|
105
105
|
computedType: import('vue').ComputedRef<string>;
|
|
106
106
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
107
|
-
loadingColor: import('vue').ComputedRef<"
|
|
107
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
108
108
|
onClick: (event: any) => void;
|
|
109
109
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
110
110
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -280,7 +280,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
280
280
|
computedClass: import('vue').ComputedRef<string>;
|
|
281
281
|
computedType: import('vue').ComputedRef<string>;
|
|
282
282
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
283
|
-
loadingColor: import('vue').ComputedRef<"
|
|
283
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
284
284
|
onClick: (event: any) => void;
|
|
285
285
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
286
286
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -464,6 +464,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
464
464
|
type: BooleanConstructor;
|
|
465
465
|
default: boolean;
|
|
466
466
|
};
|
|
467
|
+
theme: {
|
|
468
|
+
type: StringConstructor;
|
|
469
|
+
default: string;
|
|
470
|
+
validator(value: string): boolean;
|
|
471
|
+
};
|
|
467
472
|
}>, {
|
|
468
473
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
469
474
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -492,11 +497,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
492
497
|
type: BooleanConstructor;
|
|
493
498
|
default: boolean;
|
|
494
499
|
};
|
|
500
|
+
theme: {
|
|
501
|
+
type: StringConstructor;
|
|
502
|
+
default: string;
|
|
503
|
+
validator(value: string): boolean;
|
|
504
|
+
};
|
|
495
505
|
}>> & Readonly<{}>, {
|
|
496
506
|
lenderName: string;
|
|
497
507
|
lenderImageUrl: string;
|
|
498
508
|
isSmall: boolean;
|
|
499
509
|
showCssPlaceholder: boolean;
|
|
510
|
+
theme: string;
|
|
500
511
|
}, {}, {
|
|
501
512
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
502
513
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -518,6 +529,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
518
529
|
type: BooleanConstructor;
|
|
519
530
|
default: boolean;
|
|
520
531
|
};
|
|
532
|
+
theme: {
|
|
533
|
+
type: StringConstructor;
|
|
534
|
+
default: string;
|
|
535
|
+
validator(value: string): boolean;
|
|
536
|
+
};
|
|
521
537
|
}>, {
|
|
522
538
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
523
539
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -546,11 +562,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
546
562
|
type: BooleanConstructor;
|
|
547
563
|
default: boolean;
|
|
548
564
|
};
|
|
565
|
+
theme: {
|
|
566
|
+
type: StringConstructor;
|
|
567
|
+
default: string;
|
|
568
|
+
validator(value: string): boolean;
|
|
569
|
+
};
|
|
549
570
|
}>> & Readonly<{}>, {
|
|
550
571
|
lenderName: string;
|
|
551
572
|
lenderImageUrl: string;
|
|
552
573
|
isSmall: boolean;
|
|
553
574
|
showCssPlaceholder: boolean;
|
|
575
|
+
theme: string;
|
|
554
576
|
}, {}, {
|
|
555
577
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
556
578
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -31,7 +31,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
31
31
|
computedClass: import('vue').ComputedRef<string>;
|
|
32
32
|
computedType: import('vue').ComputedRef<string>;
|
|
33
33
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
34
|
-
loadingColor: import('vue').ComputedRef<"
|
|
34
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
35
35
|
onClick: (event: any) => void;
|
|
36
36
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
37
37
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -903,7 +903,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
903
903
|
computedClass: import('vue').ComputedRef<string>;
|
|
904
904
|
computedType: import('vue').ComputedRef<string>;
|
|
905
905
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
906
|
-
loadingColor: import('vue').ComputedRef<"
|
|
906
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
907
907
|
onClick: (event: any) => void;
|
|
908
908
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
909
909
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -997,7 +997,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
997
997
|
computedClass: import('vue').ComputedRef<string>;
|
|
998
998
|
computedType: import('vue').ComputedRef<string>;
|
|
999
999
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
1000
|
-
loadingColor: import('vue').ComputedRef<"
|
|
1000
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
1001
1001
|
onClick: (event: any) => void;
|
|
1002
1002
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
1003
1003
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -51,8 +51,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
51
|
default: any;
|
|
52
52
|
};
|
|
53
53
|
}>> & Readonly<{}>, {
|
|
54
|
-
tag: string;
|
|
55
54
|
theme: Record<string, any>;
|
|
55
|
+
tag: string;
|
|
56
56
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
57
57
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
58
|
export default _default;
|
|
@@ -171,8 +171,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
171
171
|
default: any;
|
|
172
172
|
};
|
|
173
173
|
}>> & Readonly<{}>, {
|
|
174
|
-
tag: string;
|
|
175
174
|
theme: Record<string, any>;
|
|
175
|
+
tag: string;
|
|
176
176
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
177
177
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
178
178
|
KvContentfulImg: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -31,6 +31,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
type: BooleanConstructor;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
|
+
theme: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
validator(value: string): boolean;
|
|
38
|
+
};
|
|
34
39
|
}>, {
|
|
35
40
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
36
41
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -59,11 +64,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
59
64
|
type: BooleanConstructor;
|
|
60
65
|
default: boolean;
|
|
61
66
|
};
|
|
67
|
+
theme: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
validator(value: string): boolean;
|
|
71
|
+
};
|
|
62
72
|
}>> & Readonly<{}>, {
|
|
63
73
|
lenderName: string;
|
|
64
74
|
lenderImageUrl: string;
|
|
65
75
|
isSmall: boolean;
|
|
66
76
|
showCssPlaceholder: boolean;
|
|
77
|
+
theme: string;
|
|
67
78
|
}, {}, {
|
|
68
79
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
69
80
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -44,6 +44,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
44
44
|
type: BooleanConstructor;
|
|
45
45
|
default: boolean;
|
|
46
46
|
};
|
|
47
|
+
theme: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
validator(value: string): boolean;
|
|
51
|
+
};
|
|
47
52
|
}>, {
|
|
48
53
|
isAnonymousUser: import('vue').ComputedRef<boolean>;
|
|
49
54
|
avatarClass: import('vue').ComputedRef<string>;
|
|
@@ -72,11 +77,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
77
|
type: BooleanConstructor;
|
|
73
78
|
default: boolean;
|
|
74
79
|
};
|
|
80
|
+
theme: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
validator(value: string): boolean;
|
|
84
|
+
};
|
|
75
85
|
}>> & Readonly<{}>, {
|
|
76
86
|
lenderName: string;
|
|
77
87
|
lenderImageUrl: string;
|
|
78
88
|
isSmall: boolean;
|
|
79
89
|
showCssPlaceholder: boolean;
|
|
90
|
+
theme: string;
|
|
80
91
|
}, {}, {
|
|
81
92
|
KvLoadingPlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
82
93
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -73,7 +73,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
73
73
|
computedClass: import('vue').ComputedRef<string>;
|
|
74
74
|
computedType: import('vue').ComputedRef<string>;
|
|
75
75
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
76
|
-
loadingColor: import('vue').ComputedRef<"
|
|
76
|
+
loadingColor: import('vue').ComputedRef<"brand" | "white" | "black">;
|
|
77
77
|
onClick: (event: any) => void;
|
|
78
78
|
tag: import('vue').ComputedRef<"button" | "router-link" | "a">;
|
|
79
79
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|