Skip to content

Commit 797658e

Browse files
committed
fix: updated npm packages
1 parent 1ed50d6 commit 797658e

File tree

8 files changed

+6583
-4822
lines changed

8 files changed

+6583
-4822
lines changed

dist/tests/searchInput.spec.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

dist/tests/utils.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare const sleep: (ms: number) => Promise<unknown>;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export declare const fieldType: readonly ["search", "text"];
2-
export declare type FieldType = typeof fieldType[number];
2+
export type FieldType = typeof fieldType[number];

dist/SearchInput.vue.d.ts dist/types/SearchInput.vue.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FieldType } from './SearchInput.types';
22
import { PropType } from 'vue';
3-
declare const _sfc_main: import("vue").DefineComponent<{
3+
declare const _default: import("vue").DefineComponent<{
44
type: {
55
type: PropType<"search" | "text">;
66
default: string;
@@ -129,5 +129,5 @@ declare const _sfc_main: import("vue").DefineComponent<{
129129
selectOnFocus: boolean;
130130
shortcutListenerEnabled: boolean;
131131
shortcutKey: string;
132-
}>;
133-
export default _sfc_main;
132+
}, {}>;
133+
export default _default;

package-lock.json

+6,545-4,787
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+25-25
Original file line numberDiff line numberDiff line change
@@ -43,33 +43,33 @@
4343
"prepare": "husky install"
4444
},
4545
"devDependencies": {
46-
"@babel/core": "^7.20.2",
47-
"@babel/preset-env": "^7.20.2",
48-
"@commitlint/cli": "^17.2.0",
49-
"@commitlint/config-conventional": "^17.2.0",
50-
"@kouts/eslint-config": "^0.0.8",
51-
"@types/jest": "^29.2.2",
52-
"@types/node": "^18.11.9",
53-
"@vitejs/plugin-vue": "^3.2.0",
54-
"@vue/compiler-sfc": "^3.2.44",
55-
"@vue/test-utils": "^2.2.1",
56-
"@vue/vue3-jest": "29.2.0",
57-
"babel-jest": "^29.3.1",
58-
"bootstrap": "^5.2.2",
59-
"eslint": "^8.27.0",
60-
"husky": "^8.0.2",
61-
"jest": "^29.3.1",
62-
"jest-environment-jsdom": "^29.3.1",
63-
"lint-staged": "^13.0.3",
46+
"@babel/core": "^7.22.10",
47+
"@babel/preset-env": "^7.22.10",
48+
"@commitlint/cli": "^17.7.1",
49+
"@commitlint/config-conventional": "^17.7.0",
50+
"@kouts/eslint-config": "^0.0.13",
51+
"@types/jest": "^29.5.3",
52+
"@types/node": "^20.5.0",
53+
"@vitejs/plugin-vue": "^4.2.3",
54+
"@vue/compiler-sfc": "^3.3.4",
55+
"@vue/test-utils": "^2.4.1",
56+
"@vue/vue3-jest": "29.2.5",
57+
"babel-jest": "^29.6.2",
58+
"bootstrap": "^5.3.1",
59+
"eslint": "^8.47.0",
60+
"husky": "^8.0.3",
61+
"jest": "^29.6.2",
62+
"jest-environment-jsdom": "^29.6.2",
63+
"lint-staged": "^14.0.0",
6464
"make-coverage-badge": "^1.2.0",
6565
"prettier": "^2.7.1",
6666
"rollup-plugin-delete": "^2.0.0",
67-
"sass": "^1.56.1",
68-
"ts-jest": "^29.0.3",
69-
"typescript": "^4.8.4",
70-
"vite": "^3.2.3",
71-
"vite-plugin-dts": "^1.7.0",
72-
"vue": "^3.2.44",
73-
"vue-tsc": "^1.0.9"
67+
"sass": "^1.65.1",
68+
"ts-jest": "^29.1.1",
69+
"typescript": "^5.1.6",
70+
"vite": "^4.4.9",
71+
"vite-plugin-dts": "^3.5.2",
72+
"vue": "^3.3.4",
73+
"vue-tsc": "^1.8.8"
7474
}
7575
}

playground/scss/variables.scss

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Include parts of Bootstrap
22

33
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
4-
@import "bootstrap/scss/_functions";
4+
@import 'bootstrap/scss/_functions';
55

66
// 2. Include any default variable overrides here
77
$primary: #1ea7fd;
@@ -11,11 +11,12 @@ $font-family-sans-serif: Avenir, Helvetica, Arial, sans-serif;
1111
$input-icon-color: darken(#f6f9fc, 30%);
1212

1313
// 3. Include remainder of required Bootstrap stylesheets
14-
@import "bootstrap/scss/_variables";
14+
@import 'bootstrap/scss/_variables';
15+
@import 'bootstrap/scss/_variables-dark';
1516

1617
// 4. Include any default map overrides here
1718

1819
// 5. Include remainder of required parts
19-
@import "bootstrap/scss/_maps";
20-
@import "bootstrap/scss/_mixins";
21-
@import "bootstrap/scss/_root";
20+
@import 'bootstrap/scss/_maps';
21+
@import 'bootstrap/scss/_mixins';
22+
@import 'bootstrap/scss/_root';

src/SearchInput.types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const fieldType = ['search', 'text'] as const
22

3-
export type FieldType = typeof fieldType[number]
3+
export type FieldType = (typeof fieldType)[number]

0 commit comments

Comments
 (0)