project-booster-vue 9.17.3 → 9.17.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "9.17.3",
3
+ "version": "9.17.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
7
7
  "test:unit": "vue-cli-service test:unit --forceExit --detectOpenHandles",
8
8
  "kozikaza-tokens-build": "env PB_THEME=kozikaza mozaic-tokens-build",
9
- "lint:js": "vue-cli-service lint --no-fix -- ./",
9
+ "check-types": "vue-tsc --noemit",
10
+ "eslint": "eslint",
11
+ "lint:js": "yarn eslint && npm run check-types",
10
12
  "lint:js:fix": "vue-cli-service lint --fix -- ./",
11
13
  "lint:style": "stylelint '**/*.vue' '**/*.scss'",
12
14
  "lint:style:fix": "stylelint '**/*.vue' '**/*.scss' --fix",
@@ -118,13 +120,13 @@
118
120
  "@typescript-eslint/eslint-plugin": "4.18.0",
119
121
  "@typescript-eslint/parser": "4.18.0",
120
122
  "@vue/babel-preset-app": "4.5.13",
121
- "@vue/compat": "3.2.6",
122
123
  "@vue/cli": "5.0.4",
123
124
  "@vue/cli-plugin-babel": "5.0.4",
124
125
  "@vue/cli-plugin-eslint": "5.0.4",
125
126
  "@vue/cli-plugin-typescript": "5.0.4",
126
127
  "@vue/cli-plugin-unit-jest": "4.5.16",
127
128
  "@vue/cli-service": "5.0.4",
129
+ "@vue/compat": "3.2.6",
128
130
  "@vue/compiler-sfc": "3.2.31",
129
131
  "@vue/eslint-config-prettier": "6.0.0",
130
132
  "@vue/eslint-config-standard": "6.0.0",
@@ -174,7 +176,8 @@
174
176
  "tsconfig-paths-webpack-plugin": "3.5.2",
175
177
  "typescript": "4.1.6",
176
178
  "vue-jest": "5.0.0-alpha.10",
177
- "vue-loader": "17.0.0"
179
+ "vue-loader": "17.0.0",
180
+ "vue-tsc": "0.34.13"
178
181
  },
179
182
  "eslintConfig": {
180
183
  "fix": false,
@@ -117,13 +117,13 @@ const initValidation = (componentId: string, computedPayload: ComputedRef<Dimens
117
117
  [`text-input-length-${componentId}`]: yup
118
118
  .number()
119
119
  .typeError(validation.requiredErrorMessage ?? 'Veuillez remplir ce champ')
120
- .required(validation.requiredErrorMessage ?? 'Veuillez remplir ce champ')
120
+ .required()
121
121
  .min(
122
122
  (validation.lengthMinValue ?? 0) + (!validation.thresholdsIncluded ? 0.1 : 0) ?? 0,
123
123
  validation.lengthMinErrorMessage ?? 'Veuillez saisir un nombre plus grand que ${min}',
124
124
  )
125
125
  .max(
126
- (validation.lengthMinValue ?? 1000000000) - (!validation.thresholdsIncluded ? 0.1 : 0) ?? 1000000000,
126
+ (validation.lengthMaxValue ?? 1000000000) - (!validation.thresholdsIncluded ? 0.1 : 0) ?? 1000000000,
127
127
  validation.lengthMaxErrorMessage ?? 'Veuillez saisir un nombre plus petit que ${max}',
128
128
  ),
129
129
  [`text-input-width-${componentId}`]: yup
package/tsconfig.json CHANGED
@@ -19,6 +19,9 @@
19
19
  "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
20
20
  "resolveJsonModule": true
21
21
  },
22
+ "vueCompilerOptions": {
23
+ "experimentalDisableTemplateSupport": true
24
+ },
22
25
  "include": [
23
26
  "src/**/*.ts",
24
27
  "src/**/*.tsx",