@kiva/kv-components 6.49.2 → 6.49.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue/KvCheckbox.css +1 -1
- package/dist/vue/KvCheckbox.js +10 -10
- package/dist/vue/KvCheckoutReceipt.css +1 -1
- package/dist/vue/KvCheckoutReceipt.js +2 -2
- package/dist/vue/KvInlineActivityCard.css +1 -1
- package/dist/vue/KvInlineActivityCard.js +2 -2
- package/dist/vue/KvLoadingPlaceholder.css +1 -1
- package/dist/vue/KvLoadingPlaceholder.js +3 -3
- package/dist/vue/KvTextInput.js +4 -4
- package/dist/vue/KvTreeMapChart.css +1 -1
- package/dist/vue/KvTreeMapChart.js +2 -2
- package/package.json +2 -2
package/dist/vue/KvCheckbox.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-
|
|
1
|
+
[data-v-d1a3011d] .check-icon svg{transform:scale(1.2)}
|
package/dist/vue/KvCheckbox.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { nanoid as k } from "nanoid";
|
|
2
|
-
import { toRefs as L, ref as v, watch as M, onMounted as I, resolveComponent as K, openBlock as r, createElementBlock as
|
|
2
|
+
import { toRefs as L, ref as v, watch as M, onMounted as I, resolveComponent as K, openBlock as r, createElementBlock as d, normalizeClass as c, normalizeStyle as S, createElementVNode as s, mergeProps as q, toHandlers as R, withModifiers as j, createCommentVNode as b, createBlock as z, renderSlot as D } from "vue";
|
|
3
3
|
import { mdiCheckCircle as E } from "@mdi/js";
|
|
4
4
|
import N from "./KvMaterialIcon.js";
|
|
5
5
|
import { useAttrs as O } from "../utils/attrs.js";
|
|
@@ -107,12 +107,12 @@ const C = [
|
|
|
107
107
|
}, J = { class: "tw-flex-1 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action" };
|
|
108
108
|
function Q(i, l, t, e, u, w) {
|
|
109
109
|
const a = K("KvMaterialIcon");
|
|
110
|
-
return r(),
|
|
111
|
-
class:
|
|
110
|
+
return r(), d("div", {
|
|
111
|
+
class: c(e.classes),
|
|
112
112
|
style: S(e.styles)
|
|
113
113
|
}, [
|
|
114
114
|
s("label", {
|
|
115
|
-
class:
|
|
115
|
+
class: c(["tw-inline-flex tw-items-center", [
|
|
116
116
|
{ "tw-opacity-low": t.disabled && t.blurOnDisabled },
|
|
117
117
|
t.variant === "round" ? "tw-align-middle" : ""
|
|
118
118
|
]]),
|
|
@@ -129,9 +129,9 @@ function Q(i, l, t, e, u, w) {
|
|
|
129
129
|
}, R(e.inputListeners, !0), {
|
|
130
130
|
onChange: l[0] || (l[0] = j((...n) => e.onChange && e.onChange(...n), ["prevent"]))
|
|
131
131
|
}), null, 16, F),
|
|
132
|
-
t.variant === "square" ? (r(),
|
|
132
|
+
t.variant === "square" ? (r(), d("div", {
|
|
133
133
|
key: 0,
|
|
134
|
-
class:
|
|
134
|
+
class: c(["tw-w-3 tw-h-3 tw-mr-2 tw-flex-shrink-0 tw-rounded-xs tw-border tw-flex tw-justify-center tw-items-center tw-overflow-hidden tw-transition-all tw-duration-100 peer-focus-visible:tw-ring-2 peer-focus-visible:tw-ring-action", {
|
|
135
135
|
"tw-bg-white": !e.isChecked,
|
|
136
136
|
"tw-bg-action": e.isChecked,
|
|
137
137
|
"tw-border-secondary": !e.isChecked && t.valid,
|
|
@@ -139,15 +139,15 @@ function Q(i, l, t, e, u, w) {
|
|
|
139
139
|
"tw-border-danger": !t.valid
|
|
140
140
|
}])
|
|
141
141
|
}, [
|
|
142
|
-
e.isChecked ? (r(),
|
|
142
|
+
e.isChecked ? (r(), d("svg", G, l[1] || (l[1] = [
|
|
143
143
|
s("path", {
|
|
144
144
|
d: "M3.99975 6.79988L1.66642 4.46655C1.40642 4.20655 0.993086 4.20655 0.733086 4.46655C0.473086 4.72655 0.473086 5.13988 0.733086 5.39988L3.52642 8.19322C3.78642 8.45322 4.20642 8.45322 4.46642 8.19322L11.5331 1.13322C11.7931 0.873216 11.7931 0.459883 11.5331 0.199883C11.2731 -0.0601172 10.8598 -0.0601172 10.5998 0.199883L3.99975 6.79988Z",
|
|
145
145
|
fill: "white"
|
|
146
146
|
}, null, -1)
|
|
147
147
|
]))) : b("", !0)
|
|
148
|
-
], 2)) : (r(),
|
|
148
|
+
], 2)) : (r(), d("div", {
|
|
149
149
|
key: 1,
|
|
150
|
-
class:
|
|
150
|
+
class: c([
|
|
151
151
|
"tw-w-3 tw-h-3 tw-mr-1",
|
|
152
152
|
"tw-flex-shrink-0",
|
|
153
153
|
"tw-rounded-full",
|
|
@@ -175,7 +175,7 @@ function Q(i, l, t, e, u, w) {
|
|
|
175
175
|
], 10, Z)
|
|
176
176
|
], 6);
|
|
177
177
|
}
|
|
178
|
-
const te = /* @__PURE__ */ H(P, [["render", Q], ["__scopeId", "data-v-
|
|
178
|
+
const te = /* @__PURE__ */ H(P, [["render", Q], ["__scopeId", "data-v-d1a3011d"]]);
|
|
179
179
|
export {
|
|
180
180
|
te as default
|
|
181
181
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.section[data-v-
|
|
1
|
+
.section[data-v-b813bc10]{border-bottom-width:.0625rem;border-top-width:0px;--tw-border-opacity: 1;border-color:rgba(var(--border-tertiary),var(--tw-border-opacity, 1));padding:.5rem;display:block;overflow:hidden}@media print{.section[data-v-b813bc10]{page-break-inside:avoid}}.section--lender-info[data-v-b813bc10]{padding-top:0}.section--print[data-v-b813bc10]{border-bottom:0}.checkout-receipt__headline[data-v-b813bc10]{text-align:center;margin-bottom:1.5rem}.checkout-receipt__item-list[data-v-b813bc10]{list-style:none;margin:0;width:100%}.loan__name[data-v-b813bc10]{margin-bottom:.5rem}.loan__name--inline[data-v-b813bc10]{display:inline-block}.loan__amount[data-v-b813bc10]{text-align:right}.total[data-v-b813bc10]{display:flex;align-items:baseline}.total__header[data-v-b813bc10],.total__amount[data-v-b813bc10]{text-align:right;flex:1}.total__amount[data-v-b813bc10]{flex-grow:.33}.payments[data-v-b813bc10]{border-bottom:none}.payments__type[data-v-b813bc10]{display:flex;text-align:right}.payments__type-title[data-v-b813bc10],.payments__type-amount[data-v-b813bc10]{flex:1}.print[data-v-b813bc10]{margin:0 auto}
|
|
@@ -80,7 +80,7 @@ const F = (d = Date.now()) => {
|
|
|
80
80
|
this.enableKivaCardTracking && this.$kvTrackEvent("post-checkout", "click", "kiva-card-view-pdf-order-confirmation drawer");
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
|
-
}, U = { class: "checkout-receipt" }, M = { class: "checkout-receipt__wrapper tw-bg-primary tw-p-4 tw-rounded-
|
|
83
|
+
}, U = { class: "checkout-receipt" }, M = { class: "checkout-receipt__wrapper tw-bg-primary tw-p-4 tw-rounded-xs tw-border tw-border-tertiary" }, N = {
|
|
84
84
|
"data-testid": "lender-info",
|
|
85
85
|
class: "section section--lender-info"
|
|
86
86
|
}, P = { class: "data-hj-suppress" }, R = { class: "data-hj-suppress" }, V = {
|
|
@@ -379,7 +379,7 @@ function Ct(d, t, o, k, wt, c) {
|
|
|
379
379
|
])
|
|
380
380
|
]);
|
|
381
381
|
}
|
|
382
|
-
const Dt = /* @__PURE__ */ D(A, [["render", Ct], ["__scopeId", "data-v-
|
|
382
|
+
const Dt = /* @__PURE__ */ D(A, [["render", Ct], ["__scopeId", "data-v-b813bc10"]]);
|
|
383
383
|
export {
|
|
384
384
|
Dt as default
|
|
385
385
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.activity-avatar[data-v-
|
|
1
|
+
.activity-avatar[data-v-84a9404c],.activity-avatar[data-v-84a9404c] img,.activity-avatar[data-v-84a9404c] div{height:2rem;width:2rem}
|
|
@@ -31,7 +31,7 @@ const g = {
|
|
|
31
31
|
lenderName: s
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
}, x = { class: "tw-flex tw-items-center tw-gap-1 tw-py-0.5 tw-px-1 tw-shadow-lg tw-rounded-
|
|
34
|
+
}, x = { class: "tw-flex tw-items-center tw-gap-1 tw-py-0.5 tw-px-1 tw-shadow-lg tw-rounded-xs tw-bg-white" }, h = { class: "tw-text-base tw-whitespace-nowrap" }, I = { class: "data-hj-suppress" };
|
|
35
35
|
function N(o, e, s, n, t, r) {
|
|
36
36
|
const a = m("KvUserAvatar");
|
|
37
37
|
return p(), i("div", x, [
|
|
@@ -47,7 +47,7 @@ function N(o, e, s, n, t, r) {
|
|
|
47
47
|
])
|
|
48
48
|
]);
|
|
49
49
|
}
|
|
50
|
-
const y = /* @__PURE__ */ f(g, [["render", N], ["__scopeId", "data-v-
|
|
50
|
+
const y = /* @__PURE__ */ f(g, [["render", N], ["__scopeId", "data-v-84a9404c"]]);
|
|
51
51
|
export {
|
|
52
52
|
y as default
|
|
53
53
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.loading-placeholder[data-v-
|
|
1
|
+
.loading-placeholder[data-v-0340412a]:before{content:"";display:block;position:absolute;height:100%;width:100%;top:0;transform:translate(100%);background:linear-gradient(to right,transparent 0%,rgb(var(--bg-secondary)) 50%,transparent 100%);animation:loading-placeholder-0340412a 1.5s infinite cubic-bezier(.4,0,.2,1)}@keyframes loading-placeholder-0340412a{0%{transform:translate(-100%)}to{transform:translate(100%)}}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { openBlock as e, createElementBlock as t } from "vue";
|
|
2
2
|
import "./KvLoadingPlaceholder.css";
|
|
3
3
|
import o from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const r = {}, c = { class: "loading-placeholder tw-w-full tw-h-full tw-relative tw-overflow-hidden tw-bg-tertiary tw-rounded-
|
|
5
|
-
function l(
|
|
4
|
+
const r = {}, c = { class: "loading-placeholder tw-w-full tw-h-full tw-relative tw-overflow-hidden tw-bg-tertiary tw-rounded-xs" };
|
|
5
|
+
function l(a, d) {
|
|
6
6
|
return e(), t("div", c);
|
|
7
7
|
}
|
|
8
|
-
const _ = /* @__PURE__ */ o(r, [["render", l], ["__scopeId", "data-v-
|
|
8
|
+
const _ = /* @__PURE__ */ o(r, [["render", l], ["__scopeId", "data-v-0340412a"]]);
|
|
9
9
|
export {
|
|
10
10
|
_ as default
|
|
11
11
|
};
|
package/dist/vue/KvTextInput.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { toRefs as b, ref as w, resolveComponent as h, openBlock as u, createElementBlock as m, normalizeClass as f, normalizeStyle as
|
|
1
|
+
import { toRefs as b, ref as w, resolveComponent as h, openBlock as u, createElementBlock as m, normalizeClass as f, normalizeStyle as x, createElementVNode as s, mergeProps as I, toHandlers as V, createBlock as p, createCommentVNode as c, withDirectives as C, createVNode as k, vShow as S, renderSlot as _ } from "vue";
|
|
2
2
|
import { mdiAlertCircleOutline as B, mdiClose as A } from "@mdi/js";
|
|
3
3
|
import { useAttrs as N } from "../utils/attrs.js";
|
|
4
4
|
import R from "./KvMaterialIcon.js";
|
|
@@ -129,16 +129,16 @@ function L(a, l, t, e, i, r) {
|
|
|
129
129
|
const n = h("kv-material-icon");
|
|
130
130
|
return u(), m("div", {
|
|
131
131
|
class: f(["tw-inline-flex", e.classes]),
|
|
132
|
-
style:
|
|
132
|
+
style: x(e.styles)
|
|
133
133
|
}, [
|
|
134
134
|
s("div", {
|
|
135
135
|
class: f(["tw-relative tw-w-full", { "tw-opacity-low": t.disabled }])
|
|
136
136
|
}, [
|
|
137
|
-
s("input",
|
|
137
|
+
s("input", I({
|
|
138
138
|
id: t.id,
|
|
139
139
|
ref: "textInputRef",
|
|
140
140
|
type: t.type,
|
|
141
|
-
class: ["tw-h-6 tw-w-full tw-px-2 tw-border tw-rounded-
|
|
141
|
+
class: ["tw-h-6 tw-w-full tw-px-2 tw-border tw-rounded-xs tw-appearance-none tw-text-base tw-ring-inset focus:tw-outline-none focus:tw-ring-2 focus:tw-border-transparent", {
|
|
142
142
|
"tw-bg-primary": t.valid && !t.disabled,
|
|
143
143
|
"tw-border-tertiary focus:tw-ring-action": t.valid,
|
|
144
144
|
"tw-pr-6 tw-bg-danger-highlight tw-border-danger focus:tw-ring-danger-highlight": !t.valid,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.treemap-figure[data-v-
|
|
1
|
+
.treemap-figure[data-v-12919f43]{height:30rem;width:calc(100% + .25rem);margin-right:-.25rem}@media (min-width: 45.875rem){.treemap-figure[data-v-12919f43]{height:20rem}}
|
|
@@ -145,7 +145,7 @@ function L(t, e, r, i, o, l) {
|
|
|
145
145
|
})) : h("", !0),
|
|
146
146
|
r.loading ? h("", !0) : (n(), c("p", {
|
|
147
147
|
key: 1,
|
|
148
|
-
class: T(["tw-rounded-
|
|
148
|
+
class: T(["tw-rounded-xs tw-box-border tw-overflow-hidden tw-text-small", l.colorClasses(u)]),
|
|
149
149
|
style: { width: "calc(100% - 0.25rem)", height: "calc(100% - 0.25rem)" },
|
|
150
150
|
onMouseenter: (V) => l.setHoverBlock(s)
|
|
151
151
|
}, [
|
|
@@ -171,7 +171,7 @@ function L(t, e, r, i, o, l) {
|
|
|
171
171
|
}, 8, ["controller"])) : h("", !0)
|
|
172
172
|
]);
|
|
173
173
|
}
|
|
174
|
-
const J = /* @__PURE__ */ W(P, [["render", L], ["__scopeId", "data-v-
|
|
174
|
+
const J = /* @__PURE__ */ W(P, [["render", L], ["__scopeId", "data-v-12919f43"]]);
|
|
175
175
|
export {
|
|
176
176
|
J as default
|
|
177
177
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "6.49.
|
|
3
|
+
"version": "6.49.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"embla-carousel-fade",
|
|
114
114
|
"popper.js"
|
|
115
115
|
],
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "bbbdaa1f86dc87c05f49fd0d922f9a08a1f5061a"
|
|
117
117
|
}
|