Dariusz Rzepka
Dariusz Rzepka
# I'm submitting a ... - [ ] bug report - [x] feature request - [ ] support request The requestAnimationFrame is now widely supported by browsers -https://caniuse.com/#search=requestanimationframe The library...
I would like to inject 2 script tags like this: **jQuery is just an example** ```javascript {` console.log('Test', typeof $); `} ``` After the first script is loaded I want...
Hi ;) `pipe` schema validation is executed in reversed order than expected. ```ts const schema = pipe(string, minStringLength(10)); ``` First `minStringLength` will be validated instead of `string` and if you...
Consider following schema ```ts const mySchema = object({ id: string(), name: pipe(string, minStringLength(10)) }) ``` Now, I would like to create another schema to validate only part of `mySchema`. For...
[React hook form](https://github.com/react-hook-form/react-hook-form) is a popular form validation library that supports forms schema resolving by resolver API (https://github.com/react-hook-form/resolvers). Resolvers are already implemented for validators like yup, superstruct, etc which are...
This is in `django-debug-toolbar/debug_toolbar/panels/templates/panel.py` in `_request_context_bind_template` ``` @contextmanager def _request_context_bind_template(self, template): if self.template is not None: raise RuntimeError("Context is already bound to a template") self.template = template # Set context...
Hello! This is a great library but it is not maintained for a long time. Are you looking for help? There are probably many people that will offer you help.
**Is your feature request related to a problem? Please describe** It is not possible to change arg types for a specific story easily. The arg types are generated based on...
- `eslint-plugin-jest-dom` version: 5.1.0 - `node` version: 18.14.2 - `npm` version: yarn 3 Relevant code or config What I wanted to use ```javascript expect( screen.getByTestId('location') ). toHaveTextContent('/'); ``` What I'm...
Newly created app just doesn't work. API throw 404 error for `global` endpoint. Possible issue: the OOTB content types are not visible in Roles -> permissions. Spend too much time...