Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

test-keyboard

Package Overview
Dependencies
Maintainers
1
Versions
263
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

test-keyboard - npm Package Compare versions

Comparing version 0.7.6 to 1.0.0-next.0

dist/test-keyboard.cjs.d.ts

26

CHANGELOG.md
# test-keyboard
## 1.0.0-next.0
> 2020-07-05
### Major Changes
- The whole API for remirror has completely changed. These pre-release versions are a breaking
change across all packages. The best way to know what's changed is to read the documentaion on the
new documentation site `https://remirror.io`.
- 28bd8bea: This is a breaking change to the structure of published npm packages.
- Move build directory from `lib` to `dist`
- Remove option for multiple entry points. It is no longer possible to import module from
'@remirror/core/lib/custom'
- Only use one entry file.
- Remove declaration source mapping for declaration files
- Remove the src directory from being published.
### Patch Changes
- Updated dependencies [undefined]
- Updated dependencies [28bd8bea]
- Updated dependencies [7b817ac2]
- @remirror/core-helpers@1.0.0-next.0
- @remirror/core-types@1.0.0-next.0
## 0.7.6

@@ -4,0 +30,0 @@

36

package.json
{
"name": "test-keyboard",
"version": "1.0.0-next.0",
"description": "A test keyboard for composing fake keyboard events",
"keywords": [
"compose events",
"events",
"keyboard"
],
"homepage": "https://github.com/remirror/remirror/tree/next/packages/test-keyboard",
"repository": "https://github.com/remirror/remirror/tree/master/packages/test-keyboard",
"license": "MIT",
"author": "Ifiok Jr. <ifiokotung@gmail.com>",
"homepage": "https://github.com/remirror/remirror/tree/master/packages/test-keyboard",
"repository": "https://github.com/remirror/remirror/tree/master/packages/test-keyboard",
"version": "0.7.6",
"main": "lib/index.js",
"module": "lib/dist/test-keyboard.esm.js",
"contributors": [
"Ifiok Jr. <ifiokotung@gmail.com>"
],
"main": "dist/test-keyboard.cjs.js",
"module": "dist/test-keyboard.esm.js",
"types": "dist/test-keyboard.cjs.d.ts",
"files": [
"environment.d.ts",
"environment.js",
"lib",
"src"
"dist"
],
"types": "lib/index.d.ts",
"dependencies": {
"@babel/runtime": "^7",
"@remirror/core-helpers": "^0.7.6",
"@remirror/core-types": "^0.9.0"
"@babel/runtime": "^7.10.4",
"@remirror/core-helpers": "^1.0.0-next.0",
"@remirror/core-types": "^1.0.0-next.0"
},
"keywords": [
"compose events",
"events",
"keyboard"
],
"publishConfig": {
"access": "public"
},
"cjs": "lib/dist/test-keyboard.cjs.js",
"meta": {

@@ -33,0 +33,0 @@ "sizeLimit": "10 KB"

@@ -9,4 +9,4 @@ # test-keyboard

You want to write tests for code that makes heavy usage of the keyboard and you're finding it hard to compose
these keyboard events together.
You want to write tests for code that makes heavy usage of the keyboard and you're finding it hard
to compose these keyboard events together.

@@ -17,4 +17,4 @@ ## This solution

It is primarily designed for dom-test environments but could be extracted out into something that can be used
in your front-end code.
It is primarily designed for dom-test environments but could be extracted out into something that
can be used in your front-end code.

@@ -24,6 +24,8 @@ ## Installation

```bash
yarn add test-keyboard
yarn add test-keyboard@next # yarn
pnpm add test-keyboard@next # pnpm
npm install test-keyboard@next # npm
```
## `Keyboard.create` - `(params: KeyboardConstructorParams) => Keyboard`
## `Keyboard.create` - `(params: KeyboardConstructorParameter) => Keyboard`

@@ -43,3 +45,3 @@ ```ts

### `KeyboardConstructorParams`
### `KeyboardConstructorParameter`

@@ -56,2 +58,3 @@ | **Property** | **Type** | **Default** | **Description** |

- [Puppeteer](https://github.com/GoogleChrome/puppeteer) for providing the _US Keyboard_ information.
- [Puppeteer](https://github.com/GoogleChrome/puppeteer) for providing the _US Keyboard_
information.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc