Socket
Socket
Sign inDemoInstall

@khanacademy/wonder-blocks-clickable

Package Overview
Dependencies
Maintainers
1
Versions
235
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@khanacademy/wonder-blocks-clickable - npm Package Compare versions

Comparing version 4.1.1 to 4.1.2

6

CHANGELOG.md
# @khanacademy/wonder-blocks-clickable
## 4.1.2
### Patch Changes
- e6433bee: Fix event bubbling on ClickableBehavior when submit is used.
## 4.1.1

@@ -4,0 +10,0 @@

1

dist/es/index.js

@@ -307,2 +307,3 @@ import * as React from 'react';

const event = new window.Event("submit", {
bubbles: true,
cancelable: true

@@ -309,0 +310,0 @@ });

@@ -331,2 +331,3 @@ 'use strict';

const event = new window.Event("submit", {
bubbles: true,
cancelable: true

@@ -333,0 +334,0 @@ });

2

package.json
{
"name": "@khanacademy/wonder-blocks-clickable",
"version": "4.1.1",
"version": "4.1.2",
"design": "v1",

@@ -5,0 +5,0 @@ "description": "Clickable component for Wonder-Blocks.",

@@ -460,2 +460,6 @@ import * as React from "react";

const event = new window.Event("submit", {
// This is required as event propagation changed in
// React 17.
// @see https://legacy.reactjs.org/blog/2020/10/20/react-v17.html#changes-to-event-delegation
bubbles: true,
cancelable: true,

@@ -462,0 +466,0 @@ });

Sorry, the diff of this file is not supported yet

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