@kiva/kv-components 6.39.0 → 6.40.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.
@@ -69,7 +69,7 @@ const Q = {
69
69
  * */
70
70
  fit: {
71
71
  type: String,
72
- default: "scale",
72
+ default: "fill",
73
73
  validator(e) {
74
74
  return ["pad", "fill", "scale", "crop", "thumb"].indexOf(e) !== -1;
75
75
  }
@@ -1,8 +1,12 @@
1
- import { openBlock as r, createElementBlock as o, normalizeStyle as l, renderSlot as n } from "vue";
1
+ import { openBlock as r, createBlock as o, resolveDynamicComponent as a, normalizeStyle as l, withCtx as n, renderSlot as c } from "vue";
2
2
  import "./KvThemeProvider.css";
3
- import c from "../_virtual/_plugin-vue_export-helper.js";
4
- const a = {
3
+ import i from "../_virtual/_plugin-vue_export-helper.js";
4
+ const m = {
5
5
  props: {
6
+ tag: {
7
+ type: String,
8
+ default: "div"
9
+ },
6
10
  /**
7
11
  * An object containing CSS custom properties set to RGB values.
8
12
  *
@@ -49,17 +53,20 @@ const a = {
49
53
  }
50
54
  }
51
55
  };
52
- function m(e, p, t, s, i, d) {
53
- return r(), o("div", {
56
+ function s(t, p, e, d, f, u) {
57
+ return r(), o(a(e.tag), {
54
58
  style: l({
55
- ...t.theme,
59
+ ...e.theme,
56
60
  color: "rgb(var(--text-primary))"
57
61
  })
58
- }, [
59
- n(e.$slots, "default")
60
- ], 4);
62
+ }, {
63
+ default: n(() => [
64
+ c(t.$slots, "default")
65
+ ]),
66
+ _: 3
67
+ }, 8, ["style"]);
61
68
  }
62
- const h = /* @__PURE__ */ c(a, [["render", m]]);
69
+ const v = /* @__PURE__ */ i(m, [["render", s]]);
63
70
  export {
64
- h as default
71
+ v as default
65
72
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "6.39.0",
3
+ "version": "6.40.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,12 +15,13 @@
15
15
  "./vue/*.js": "./dist/vue/*.js"
16
16
  },
17
17
  "devDependencies": {
18
+ "@apollo/client": "^3.13.1",
18
19
  "@babel/core": "^7.14.8",
19
20
  "@babel/eslint-parser": "^7.13.14",
20
21
  "@babel/preset-env": "^7.24.8",
21
22
  "@babel/preset-react": "^7.24.7",
22
23
  "@babel/preset-typescript": "^7.24.7",
23
- "@kiva/kv-tokens": "^3.2.1",
24
+ "@kiva/kv-tokens": "^3.3.0",
24
25
  "@kiva/vite-plugin-vue-lib-css": "^2.0.0",
25
26
  "@laynezh/vite-plugin-lib-assets": "^0.6.1",
26
27
  "@mdi/js": "^7.4.47",
@@ -62,6 +63,7 @@
62
63
  "eslint-plugin-vue": "^7.9.0",
63
64
  "flag-icons": "^7.3.0",
64
65
  "focus-trap": "^6.9.4",
66
+ "fuse.js": "^7.1.0",
65
67
  "graphql-tag": "^2.12.6",
66
68
  "import-meta-loader": "^1.1.0",
67
69
  "jest": "^27.4.3",
@@ -93,6 +95,7 @@
93
95
  "postbuild": "mkdir -p ../../dist/kvui && mv -v dist/kvui/* ../../dist/kvui/"
94
96
  },
95
97
  "peerDependencies": {
98
+ "@apollo/client": "3.x",
96
99
  "@kiva/kv-tokens": "3.x",
97
100
  "@mdi/js": "7.x",
98
101
  "@vueuse/integrations": "9.x",
@@ -111,5 +114,5 @@
111
114
  "embla-carousel-fade",
112
115
  "popper.js"
113
116
  ],
114
- "gitHead": "d1f5e8422acc9bd1cbd36398e524e01b500c192d"
117
+ "gitHead": "d083ad0c8321b44ffa021df28a89b2b1001f38d9"
115
118
  }