Skip to content

Commit 3a68607

Browse files
chore(release): set package.json to 1.1.15 [skip ci]
## [1.1.15](v1.1.14...v1.1.15) (2024-06-15) ### Bug Fixes * updated vite and npm packages ([5cb5c8b](5cb5c8b))
1 parent 6cd6ae8 commit 3a68607

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.15](https://github.com/kouts/vue-search-input/compare/v1.1.14...v1.1.15) (2024-06-15)
2+
3+
4+
### Bug Fixes
5+
6+
* updated vite and npm packages ([5cb5c8b](https://github.com/kouts/vue-search-input/commit/5cb5c8b9d2d099ad8849181a3113efc6b822b1f1))
7+
18
## [1.1.14](https://github.com/kouts/vue-search-input/compare/v1.1.13...v1.1.14) (2023-10-17)
29

310

dist/types/SearchInput.vue.d.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { FieldType } from './SearchInput.types';
22
import { PropType } from 'vue';
3-
declare const _default: import("vue").DefineComponent<{
3+
4+
declare const _default: import('vue').DefineComponent<{
45
type: {
56
type: PropType<"search" | "text" | "password">;
67
default: string;
@@ -51,20 +52,20 @@ declare const _default: import("vue").DefineComponent<{
5152
default: string;
5253
};
5354
}, {
54-
inputRef: import("vue").Ref<HTMLInputElement | null>;
55-
hasFocus: import("vue").Ref<boolean>;
55+
inputRef: import('vue').Ref<HTMLInputElement | null>;
56+
hasFocus: import('vue').Ref<boolean>;
5657
clear: () => void;
5758
onInput: (e: Event) => void;
5859
onKeydown: (e: KeyboardEvent) => void;
59-
attrsStyles: import("vue").ComputedRef<{
60+
attrsStyles: import('vue').ComputedRef<{
6061
[key: string]: unknown;
6162
}>;
62-
attrsWithoutStyles: import("vue").ComputedRef<{
63+
attrsWithoutStyles: import('vue').ComputedRef<{
6364
[key: string]: unknown;
6465
}>;
65-
showClearIcon: import("vue").ComputedRef<boolean>;
66-
showShortcutIcon: import("vue").ComputedRef<boolean>;
67-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
66+
showClearIcon: import('vue').ComputedRef<boolean>;
67+
showShortcutIcon: import('vue').ComputedRef<boolean>;
68+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
6869
type: {
6970
type: PropType<"search" | "text" | "password">;
7071
default: string;

0 commit comments

Comments
 (0)