Nick Lemmon
Nick Lemmon
In order to maintain consistency across exported types, `realMouseUpOptions` and `realMouseDownOptions` should use pascal case. This is also the recommended/documented casing across the official TypeScript handbook. Thanks for your work...
Resolves #611 This is somewhat of a breaking change - maybe should not be included until the next major release.
For both `@web/rollup-plugin-copy` and `@web/rollup-plugin-import-meta-assets` the `index.d.ts` file is not present despite being referenced in the package `exports["."].types` field. - [@web/rollup-plugin-copy package contents](https://www.npmjs.com/package/@web/rollup-plugin-copy?activeTab=code) - [@web/rollup-plugin-import-meta-assets package contents](https://www.npmjs.com/package/@web/rollup-plugin-import-meta-assets?activeTab=code) This may be...
### Describe the feature you'd like: ```ts userEvent.keyboard('/test-dir/') ``` Should result in "/test-dir/" being entered in to the console. Instead the following is logged: "Unknowntest-dirUnknown" ### Suggested implementation: Add back...
### Describe the feature you'd like: Support for the `[Ctrl]` special key to help handle process cancelation ```ts userEvent.keyboard('[Ctrl]c'). ``` ### Suggested implementation: Add the `Ctrl` keys to the `keyMap.ts`...