Skip to content

Commit 5522b7c

Browse files
chore(release): set package.json to 1.1.13 [skip ci]
## [1.1.13](v1.1.12...v1.1.13) (2023-10-16) ### Bug Fixes * added password as a field type ([975f540](975f540))
1 parent a7bf9ec commit 5522b7c

5 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.13](https://github.com/kouts/vue-search-input/compare/v1.1.12...v1.1.13) (2023-10-16)
2+
3+
4+
### Bug Fixes
5+
6+
* added password as a field type ([975f540](https://github.com/kouts/vue-search-input/commit/975f540130025db13aa74caeba546b9f9b750bc7))
7+
18
## [1.1.12](https://github.com/kouts/vue-search-input/compare/v1.1.11...v1.1.12) (2023-08-14)
29

310

dist/types/SearchInput.types.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export declare const fieldType: readonly ["search", "text"];
1+
export declare const fieldType: readonly ["search", "text", "password"];
22
export type FieldType = (typeof fieldType)[number];

dist/types/SearchInput.vue.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FieldType } from './SearchInput.types';
22
import { PropType } from 'vue';
33
declare const _default: import("vue").DefineComponent<{
44
type: {
5-
type: PropType<"search" | "text">;
5+
type: PropType<"search" | "text" | "password">;
66
default: string;
77
validator: (prop: FieldType) => boolean;
88
};
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
6666
showShortcutIcon: import("vue").ComputedRef<boolean>;
6767
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6868
type: {
69-
type: PropType<"search" | "text">;
69+
type: PropType<"search" | "text" | "password">;
7070
default: string;
7171
validator: (prop: FieldType) => boolean;
7272
};
@@ -117,7 +117,7 @@ declare const _default: import("vue").DefineComponent<{
117117
}>> & {
118118
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
119119
}, {
120-
type: "search" | "text";
120+
type: "search" | "text" | "password";
121121
modelValue: string;
122122
wrapperClass: string;
123123
searchIcon: boolean;

dist/vue-search-input.es.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineComponent as k, ref as I, computed as i, watch as b, onBeforeUnmount as K, openBlock as V, createElementBlock as B, normalizeProps as C, guardReactiveProps as L, renderSlot as u, createCommentVNode as y, createElementVNode as d, mergeProps as H, withKeys as M } from "vue";
2-
const P = ["search", "text"], g = (e, t, l = !0) => {
2+
const P = ["search", "text", "password"], g = (e, t, l = !0) => {
33
const r = {};
44
return Object.keys(e).forEach((o) => {
55
(l ? t.indexOf(o) === -1 : t.indexOf(o) >= 0) && (r[o] = e[o]);

dist/vue-search-input.umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)