vue-search-input
Advanced tools
Comparing version
@@ -0,1 +1,8 @@ | ||
## [1.1.2](https://github.com/kouts/vue-search-input/compare/v1.1.1...v1.1.2) (2022-04-21) | ||
### Bug Fixes | ||
* updated npm packages ([6b3c536](https://github.com/kouts/vue-search-input/commit/6b3c536bc6f6bec38852ed28e6a9fb1c90fd844b)) | ||
## [1.1.1](https://github.com/kouts/vue-search-input/compare/v1.1.0...v1.1.1) (2022-01-30) | ||
@@ -2,0 +9,0 @@ |
@@ -67,29 +67,53 @@ import { PropType } from 'vue'; | ||
showShortcutIcon: import("vue").ComputedRef<boolean>; | ||
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ | ||
type?: unknown; | ||
modelValue?: unknown; | ||
wrapperClass?: unknown; | ||
searchIcon?: unknown; | ||
shortcutIcon?: unknown; | ||
clearIcon?: unknown; | ||
hideShortcutIconOnBlur?: unknown; | ||
clearOnEsc?: unknown; | ||
blurOnEsc?: unknown; | ||
selectOnFocus?: unknown; | ||
shortcutListenerEnabled?: unknown; | ||
shortcutKey?: unknown; | ||
} & { | ||
type: "search" | "text"; | ||
modelValue: string; | ||
wrapperClass: string; | ||
searchIcon: boolean; | ||
shortcutIcon: boolean; | ||
clearIcon: boolean; | ||
hideShortcutIconOnBlur: boolean; | ||
clearOnEsc: boolean; | ||
blurOnEsc: boolean; | ||
selectOnFocus: boolean; | ||
shortcutListenerEnabled: boolean; | ||
shortcutKey: string; | ||
} & {}> & { | ||
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ | ||
type: { | ||
type: PropType<"search" | "text">; | ||
default: string; | ||
validator: (prop: FieldType) => boolean; | ||
}; | ||
modelValue: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
wrapperClass: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
searchIcon: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
shortcutIcon: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
clearIcon: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
hideShortcutIconOnBlur: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
clearOnEsc: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
blurOnEsc: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
selectOnFocus: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
shortcutListenerEnabled: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
shortcutKey: { | ||
type: PropType<string>; | ||
default: string; | ||
}; | ||
}>> & { | ||
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; | ||
@@ -96,0 +120,0 @@ }, { |
{ | ||
"name": "vue-search-input", | ||
"description": "A Vue.js 3 search input component, inspired by the global search input of Storybook and GitHub.", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"license": "MIT", | ||
@@ -42,40 +42,40 @@ "repository": "https://github.com/kouts/vue-search-input", | ||
"devDependencies": { | ||
"@babel/core": "^7.16.7", | ||
"@babel/preset-env": "^7.16.7", | ||
"@commitlint/cli": "^16.0.1", | ||
"@commitlint/config-conventional": "^16.0.0", | ||
"@rushstack/eslint-patch": "^1.1.0", | ||
"@babel/core": "^7.17.9", | ||
"@babel/preset-env": "^7.16.11", | ||
"@commitlint/cli": "^16.2.3", | ||
"@commitlint/config-conventional": "^16.2.1", | ||
"@rushstack/eslint-patch": "^1.1.3", | ||
"@semantic-release/changelog": "^6.0.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"@types/jest": "^27.4.0", | ||
"@types/node": "^17.0.5", | ||
"@types/jest": "^27.4.1", | ||
"@types/node": "^17.0.25", | ||
"@types/nprogress": "^0.2.0", | ||
"@typescript-eslint/parser": "^5.8.1", | ||
"@vitejs/plugin-vue": "^2.0.0", | ||
"@typescript-eslint/parser": "^5.20.0", | ||
"@vitejs/plugin-vue": "^2.3.1", | ||
"@vue/eslint-config-typescript": "^10.0.0", | ||
"@vue/test-utils": "^2.0.0-rc.18", | ||
"@vue/test-utils": "^2.0.0-rc.21", | ||
"@vue/vue3-jest": "^27.0.0-alpha.4", | ||
"axios": "^0.24.0", | ||
"babel-jest": "^27.4.5", | ||
"axios": "^0.26.1", | ||
"babel-jest": "^27.5.1", | ||
"bootstrap": "^5.1.3", | ||
"eslint": "^8.5.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint": "^8.13.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-html": "^6.2.0", | ||
"eslint-plugin-prettier-vue": "^3.1.0", | ||
"eslint-plugin-vue": "^8.2.0", | ||
"husky": "^7.0.0", | ||
"jest": "^27.4.5", | ||
"lint-staged": "^12.1.4", | ||
"eslint-plugin-vue": "^8.6.0", | ||
"husky": "^7.0.4", | ||
"jest": "^27.5.1", | ||
"lint-staged": "^12.4.0", | ||
"make-coverage-badge": "^1.2.0", | ||
"nprogress": "^0.2.0", | ||
"prettier": "^2.5.1", | ||
"prettier": "^2.6.2", | ||
"rollup-plugin-delete": "^2.0.0", | ||
"sass": "^1.48.0", | ||
"ts-jest": "^27.1.2", | ||
"typescript": "^4.4.4", | ||
"vite": "^2.7.2", | ||
"vite-plugin-dts": "^0.9.9", | ||
"vue": "^3.2.25", | ||
"vue-tsc": "^0.29.8" | ||
"sass": "^1.50.1", | ||
"ts-jest": "^27.1.4", | ||
"typescript": "^4.6.3", | ||
"vite": "^2.9.5", | ||
"vite-plugin-dts": "^0.9.10", | ||
"vue": "^3.2.33", | ||
"vue-tsc": "^0.34.8" | ||
} | ||
} |
94916
0.73%897
2.87%