Timothy Lee
Timothy Lee
I agree that the default syntax should be `and` and `or`, but it would be nice to be able to set aliases for operators and/or functions: ```javascript math.alias({ operators: {...
I've written a [failing test](https://github.com/tetslee/ajv/commit/86cc3871d03f4183542713a6b05927fa03cfb472) but need guidance on where to fix it (or maybe this behaviour was actually intentional).
Thanks for clarification - not a bug, just my misunderstanding of what the `validateSchema` option means. I just thought it was one since it was an unreported breaking change since...
Thanks for the consideration, I can understand being careful about supporting things outside of jsonschema spec. Of course I'm biased but I can only see `enum: []` as being a...
Maybe not exactly the same issue but I had a similar problem that was solved adding the prop `allowsCustomValue={true}` https://nextui.org/docs/components/autocomplete#autocomplete-props
If you have both nextui validation props (isRequired, minLength, maxLength) and RHF validation they might conflict - possibly there might be some race condition between html, nextui, and RHF validation...
I needed a cross platform solution: // lerna-dependencies-only.js ```javascript const { execSync } = require('child_process'); const { detectProjects } = require('lerna/utils'); const cliArgs = process.argv.slice(2); const run = async ()...