fenextjs-validator
Advanced tools
Comparing version 1.0.10 to 1.0.11
@@ -596,6 +596,15 @@ "use strict"; | ||
INPUT_REQUIRED: new Input_1.ErrorInputRequired(props), | ||
INPUT_NOT_EQUAL: new Input_1.ErrorInputNotEqual(props), | ||
INPUT_NOT_EQUAL: new Input_1.ErrorInputNotEqual({ | ||
...props, | ||
equal: this.#equalValue, | ||
}), | ||
INPUT_INVALID: new Input_1.ErrorInputInvalid(props), | ||
INPUT_VALUE_TOO_HIGH: new Input_1.ErrorInputValueTooHigh(props), | ||
INPUT_VALUE_TOO_LOW: new Input_1.ErrorInputValueTooLow(props), | ||
INPUT_VALUE_TOO_HIGH: new Input_1.ErrorInputValueTooHigh({ | ||
...props, | ||
max: this.#maxValue, | ||
}), | ||
INPUT_VALUE_TOO_LOW: new Input_1.ErrorInputValueTooLow({ | ||
...props, | ||
min: this.#minValue, | ||
}), | ||
}; | ||
@@ -602,0 +611,0 @@ // Lanza una excepción específica basada en el código de error proporcionado o una excepción general "ErrorFenextjs". |
{ | ||
"name": "fenextjs-validator", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "", | ||
@@ -10,3 +10,3 @@ "main": "./cjs/index.js", | ||
"md":"npm run build:cjs && npx jsdoc2md ./cjs/index.js > r.md", | ||
"test": "npm run build:cjs && node ./cjs/test.js", | ||
"test": "bun test.ts", | ||
"build": "npm run build:esm && npm run build:cjs", | ||
@@ -41,4 +41,4 @@ "build:esm": "echo 'esm'", | ||
"dependencies": { | ||
"fenextjs-error": "^1.0.8", | ||
"fenextjs-interface": "^1.0.25" | ||
"fenextjs-error": "^1.0.10", | ||
"fenextjs-interface": "^1.0.31" | ||
}, | ||
@@ -50,15 +50,15 @@ "files": [ | ||
"devDependencies": { | ||
"@types/node": "20.4.4", | ||
"@types/react": "18.2.15", | ||
"@types/node": "20.6.3", | ||
"@types/react": "18.2.22", | ||
"@types/react-dom": "18.2.7", | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"eslint": "8.45.0", | ||
"@typescript-eslint/eslint-plugin": "^6.7.2", | ||
"@typescript-eslint/parser": "^6.7.2", | ||
"eslint": "8.49.0", | ||
"jsdoc-to-markdown": "^8.0.0", | ||
"prettier": "^3.0.0", | ||
"prettier": "^3.0.3", | ||
"ts-loader": "^9.4.4", | ||
"tslib": "^2.6.0", | ||
"typedoc": "^0.24.8", | ||
"typescript": "^5.1.6" | ||
"tslib": "^2.6.2", | ||
"typedoc": "^0.25.1", | ||
"typescript": "^5.2.2" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
70305
5
847
Updatedfenextjs-error@^1.0.10
Updatedfenextjs-interface@^1.0.31