Skip to content

Commit

Permalink
chore(release): set package.json to 1.1.16 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.16](v1.1.15...v1.1.16) (2024-06-21)

### Bug Fixes

* added types to package.json ([c09295d](c09295d))
  • Loading branch information
semantic-release-bot committed Jun 21, 2024
1 parent c09295d commit d2d827d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.1.16](https://github.com/kouts/vue-search-input/compare/v1.1.15...v1.1.16) (2024-06-21)


### Bug Fixes

* added types to package.json ([c09295d](https://github.com/kouts/vue-search-input/commit/c09295ddf35b8f49ec4170e019db4429fb3a0548))

## [1.1.15](https://github.com/kouts/vue-search-input/compare/v1.1.14...v1.1.15) (2024-06-15)


Expand Down
2 changes: 1 addition & 1 deletion coverage/badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions coverage/coverage-summary.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{"total": {"lines":{"total":94,"covered":89,"skipped":0,"pct":94.68},"statements":{"total":102,"covered":96,"skipped":0,"pct":94.11},"functions":{"total":28,"covered":26,"skipped":0,"pct":92.85},"branches":{"total":79,"covered":72,"skipped":0,"pct":91.13},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":"Unknown"}}
{"total": {"lines":{"total":93,"covered":88,"skipped":0,"pct":94.62},"statements":{"total":101,"covered":95,"skipped":0,"pct":94.05},"functions":{"total":28,"covered":26,"skipped":0,"pct":92.85},"branches":{"total":79,"covered":72,"skipped":0,"pct":91.13},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":"Unknown"}}
,"/home/runner/work/vue-search-input/vue-search-input/src/SearchInput.types.ts": {"lines":{"total":1,"covered":1,"skipped":0,"pct":100},"functions":{"total":0,"covered":0,"skipped":0,"pct":100},"statements":{"total":1,"covered":1,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}}
,"/home/runner/work/vue-search-input/vue-search-input/src/SearchInput.vue": {"lines":{"total":93,"covered":88,"skipped":0,"pct":94.62},"functions":{"total":28,"covered":26,"skipped":0,"pct":92.85},"statements":{"total":101,"covered":95,"skipped":0,"pct":94.05},"branches":{"total":79,"covered":72,"skipped":0,"pct":91.13}}
,"/home/runner/work/vue-search-input/vue-search-input/src/SearchInput.vue": {"lines":{"total":92,"covered":87,"skipped":0,"pct":94.56},"functions":{"total":28,"covered":26,"skipped":0,"pct":92.85},"statements":{"total":100,"covered":94,"skipped":0,"pct":94},"branches":{"total":79,"covered":72,"skipped":0,"pct":91.13}}
}
8 changes: 4 additions & 4 deletions dist/types/SearchInput.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PropType } from 'vue';

declare const _default: import('vue').DefineComponent<{
type: {
type: PropType<"search" | "text" | "password">;
type: PropType<FieldType>;
default: string;
validator: (prop: FieldType) => boolean;
};
Expand Down Expand Up @@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<{
default: boolean;
};
shortcutKey: {
type: PropType<string>;
type: PropType<KeyboardEvent["key"]>;
default: string;
};
}, {
Expand All @@ -67,7 +67,7 @@ declare const _default: import('vue').DefineComponent<{
showShortcutIcon: import('vue').ComputedRef<boolean>;
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
type: {
type: PropType<"search" | "text" | "password">;
type: PropType<FieldType>;
default: string;
validator: (prop: FieldType) => boolean;
};
Expand Down Expand Up @@ -112,7 +112,7 @@ declare const _default: import('vue').DefineComponent<{
default: boolean;
};
shortcutKey: {
type: PropType<string>;
type: PropType<KeyboardEvent["key"]>;
default: string;
};
}>> & {
Expand Down

0 comments on commit d2d827d

Please sign in to comment.