@opentinyvue/vue-autocomplete 3.23.0 → 3.25.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/lib/index.js CHANGED
@@ -110,7 +110,7 @@ var Autocomplete = defineComponent({
110
110
  });
111
111
  }
112
112
  });
113
- var version = "3.23.0";
113
+ var version = "3.undefined";
114
114
  Autocomplete.model = {
115
115
  prop: "modelValue",
116
116
  event: "update:modelValue"
package/lib/pc.js CHANGED
@@ -65,7 +65,7 @@ var _hoisted_2 = {
65
65
  class: "tiny-autocomplete-suggestion__list-item tiny-autocomplete-suggestion__list-loading",
66
66
  role: "loading"
67
67
  };
68
- var _hoisted_3 = ["onClick", "id", "aria-selected"];
68
+ var _hoisted_3 = ["title", "onClick", "id", "aria-selected"];
69
69
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
70
70
  var _component_tiny_input = resolveComponent("tiny-input");
71
71
  var _component_icon_loading_shadow = resolveComponent("icon-loading-shadow");
@@ -160,6 +160,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
160
160
  renderList(_ctx.state.suggestions, function(item, index) {
161
161
  return openBlock(), createElementBlock("li", {
162
162
  key: index,
163
+ title: item[_ctx.valueKey],
163
164
  class: normalizeClass(["tiny-autocomplete-suggestion__list-item", {
164
165
  highlighted: _ctx.state.highlightedIndex === index,
165
166
  selected: _ctx.modelValue === item[_ctx.valueKey]
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-autocomplete",
3
3
  "type": "module",
4
- "version": "3.23.0",
4
+ "version": "3.25.0",
5
5
  "description": "",
6
6
  "license": "MIT",
7
7
  "sideEffects": false,
8
8
  "main": "./lib/index.js",
9
9
  "module": "./lib/index.js",
10
10
  "dependencies": {
11
- "@opentinyvue/vue-common": "~3.23.0",
12
- "@opentinyvue/vue-directive": "~3.23.0",
13
- "@opentinyvue/vue-icon": "~3.23.0",
14
- "@opentinyvue/vue-input": "~3.23.0",
15
- "@opentinyvue/vue-renderless": "~3.23.0",
16
- "@opentinyvue/vue-scrollbar": "~3.23.0",
17
- "@opentinyvue/vue-theme": "~3.23.0"
11
+ "@opentinyvue/vue-common": "~3.25.0",
12
+ "@opentinyvue/vue-directive": "~3.25.0",
13
+ "@opentinyvue/vue-icon": "~3.25.0",
14
+ "@opentinyvue/vue-input": "~3.25.0",
15
+ "@opentinyvue/vue-renderless": "~3.25.0",
16
+ "@opentinyvue/vue-scrollbar": "~3.25.0",
17
+ "@opentinyvue/vue-theme": "~3.25.0"
18
18
  },
19
19
  "types": "index.d.ts",
20
20
  "scripts": {
package/src/index.d.ts CHANGED
@@ -67,6 +67,7 @@ export declare const autoCompleteProps: {
67
67
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
68
68
  tiny_renderless: FunctionConstructor;
69
69
  tiny_theme: StringConstructor;
70
+ tiny_mcp_config: ObjectConstructor;
70
71
  tiny_chart_theme: ObjectConstructor;
71
72
  };
72
73
  declare const _default: import("@vue/runtime-core").DefineComponent<{
@@ -138,6 +139,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
138
139
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
139
140
  tiny_renderless: FunctionConstructor;
140
141
  tiny_theme: StringConstructor;
142
+ tiny_mcp_config: ObjectConstructor;
141
143
  tiny_chart_theme: ObjectConstructor;
142
144
  }, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
143
145
  [key: string]: any;
@@ -210,6 +212,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
210
212
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
211
213
  tiny_renderless: FunctionConstructor;
212
214
  tiny_theme: StringConstructor;
215
+ tiny_mcp_config: ObjectConstructor;
213
216
  tiny_chart_theme: ObjectConstructor;
214
217
  }>>, {
215
218
  disabled: boolean;
package/src/pc.vue.d.ts CHANGED
@@ -11,6 +11,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
11
11
  _constants?: any;
12
12
  tiny_theme?: any;
13
13
  tiny_chart_theme?: any;
14
+ tiny_mcp_config?: any;
14
15
  modelValue?: any;
15
16
  tabindex?: any;
16
17
  suffixIcon?: any;
@@ -55,6 +56,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
55
56
  _constants?: any;
56
57
  tiny_theme?: any;
57
58
  tiny_chart_theme?: any;
59
+ tiny_mcp_config?: any;
58
60
  modelValue?: any;
59
61
  tabindex?: any;
60
62
  suffixIcon?: any;
@@ -97,6 +99,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
97
99
  readonly _constants?: any;
98
100
  readonly tiny_theme?: any;
99
101
  readonly tiny_chart_theme?: any;
102
+ readonly tiny_mcp_config?: any;
100
103
  readonly modelValue?: any;
101
104
  readonly tabindex?: any;
102
105
  readonly suffixIcon?: any;