@kiva/kv-components 8.23.0 → 8.23.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/dist/vue/KvDatePicker.js +38 -19
- package/package.json +2 -2
package/dist/vue/KvDatePicker.js
CHANGED
|
@@ -1,30 +1,49 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { resolveComponent as
|
|
1
|
+
import h from "./KvDatePicker2.js";
|
|
2
|
+
import { resolveComponent as r, openBlock as l, createBlock as u, withCtx as c, createElementVNode as e, normalizeClass as v, createVNode as _, mergeProps as k, renderSlot as f, createElementBlock as x } from "vue";
|
|
3
3
|
import "./KvDatePicker.css";
|
|
4
|
-
import
|
|
5
|
-
const V = { class: "kv-datepicker__content" }
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
import z from "../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
+
const V = { class: "kv-datepicker__content" }, g = {
|
|
6
|
+
class: "dp__icon",
|
|
7
|
+
viewBox: "0 0 32 32",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
"stroke-width": "0",
|
|
10
|
+
"aria-hidden": "true",
|
|
11
|
+
style: { "box-sizing": "content-box", width: "1rem", height: "1rem", padding: "6px 12px" }
|
|
12
|
+
};
|
|
13
|
+
function C(o, t, d, a, n, s) {
|
|
14
|
+
const i = r("vue-date-picker"), p = r("kv-theme-provider");
|
|
15
|
+
return l(), u(p, { theme: a.themeStyle }, {
|
|
16
|
+
default: c(() => [
|
|
17
|
+
e("div", {
|
|
18
|
+
class: v(["kv-datepicker", d.theme])
|
|
12
19
|
}, [
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
modelValue:
|
|
16
|
-
"onUpdate:modelValue":
|
|
17
|
-
},
|
|
20
|
+
e("div", V, [
|
|
21
|
+
_(i, k({
|
|
22
|
+
modelValue: n.selectedDate,
|
|
23
|
+
"onUpdate:modelValue": t[0] || (t[0] = (m) => n.selectedDate = m)
|
|
24
|
+
}, o.$attrs, {
|
|
18
25
|
"auto-apply": !0,
|
|
19
|
-
"onUpdate:modelValue":
|
|
20
|
-
}),
|
|
26
|
+
"onUpdate:modelValue": s.handleDateChange
|
|
27
|
+
}), {
|
|
28
|
+
"input-icon": c(() => [
|
|
29
|
+
f(o.$slots, "input-icon", {}, () => [
|
|
30
|
+
(l(), x("svg", g, t[1] || (t[1] = [
|
|
31
|
+
e("path", { d: "M29.333 8c0-2.208-1.792-4-4-4h-18.667c-2.208 0-4 1.792-4 4v18.667c0 2.208 1.792 4 4 4h18.667c2.208 0 4-1.792 4-4v-18.667zM26.667 8v18.667c0 0.736-0.597 1.333-1.333 1.333 0 0-18.667 0-18.667 0-0.736 0-1.333-0.597-1.333-1.333 0 0 0-18.667 0-18.667 0-0.736 0.597-1.333 1.333-1.333 0 0 18.667 0 18.667 0 0.736 0 1.333 0.597 1.333 1.333z" }, null, -1),
|
|
32
|
+
e("path", { d: "M20 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z" }, null, -1),
|
|
33
|
+
e("path", { d: "M9.333 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z" }, null, -1),
|
|
34
|
+
e("path", { d: "M4 14.667h24c0.736 0 1.333-0.597 1.333-1.333s-0.597-1.333-1.333-1.333h-24c-0.736 0-1.333 0.597-1.333 1.333s0.597 1.333 1.333 1.333z" }, null, -1)
|
|
35
|
+
])))
|
|
36
|
+
])
|
|
37
|
+
]),
|
|
38
|
+
_: 3
|
|
39
|
+
}, 16, ["modelValue", "onUpdate:modelValue"])
|
|
21
40
|
])
|
|
22
41
|
], 2)
|
|
23
42
|
]),
|
|
24
|
-
_:
|
|
43
|
+
_: 3
|
|
25
44
|
}, 8, ["theme"]);
|
|
26
45
|
}
|
|
27
|
-
const y = /* @__PURE__ */ h
|
|
46
|
+
const y = /* @__PURE__ */ z(h, [["render", C]]);
|
|
28
47
|
export {
|
|
29
48
|
y as default
|
|
30
49
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "8.23.
|
|
3
|
+
"version": "8.23.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"dependencies": {
|
|
114
114
|
"fuse.js": "^7.1.0"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "140a7acf658cbb354e375bb32cf77b199ad675c2"
|
|
117
117
|
}
|