Skip to content

Commit 263db93

Browse files
authored
Merge pull request #530 from dnum-mi/fix/dsfr-header-definition-type
fix(DsfrHeader): 🏷️ Corrige la définition de type
2 parents e685215 + 0c494ec commit 263db93

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"engines": {
1111
"node": ">=18.x.x",
12-
"npm": "8.x.x"
12+
"npm": ">=8.x.x"
1313
},
1414
"types": "./types",
1515
"license": "MIT",

tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "@vue/tsconfig/tsconfig.web.json",
3-
"include": ["env.d.ts", "src/**/*.{js,ts}", "src/**/*.vue"],
3+
"include": ["env.d.ts", "types/index.d.ts", "src/**/*.{js,ts}", "src/**/*.vue"],
44
"exclude": ["src/**/__tests__/*", "src/demo-app/**"],
55
"compilerOptions": {
66
"allowJs": true,

types/components/DsfrHeader/DsfrHeader.vue.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ declare const _default: import('vue').DefineComponent<{
122122
modelValue: string | undefined;
123123
placeholder: string;
124124
quickLinks: HeaderMenuLink[];
125-
showSearch: boolean;
126125
operatorImgAlt: string;
127126
operatorImgSrc: string;
128127
operatorImgStyle: Record;
@@ -133,6 +132,7 @@ declare const _default: import('vue').DefineComponent<{
133132
placeholder: string;
134133
quickLinks: HeaderMenuLink[];
135134
showSearch: boolean;
135+
searchLabel: string;
136136
operatorImgAlt: string;
137137
operatorImgSrc: string;
138138
operatorImgStyle: Record;

0 commit comments

Comments
 (0)