New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

intact-react

Package Overview
Dependencies
Maintainers
6
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

intact-react - npm Package Compare versions

Comparing version 3.0.0-beta.16 to 3.0.0-beta.17

1

dist/packages/intact/__tests__/types.d.ts

@@ -9,2 +9,3 @@ import { Component } from '../src/core/component';

b: [number];
aa: [number, number];
}

@@ -11,0 +12,0 @@ declare class A<T extends AProps, E extends AEvents> extends Component<T, E> {

2

dist/packages/intact/src/core/event.d.ts

@@ -16,3 +16,3 @@ import { Props } from 'misstime';

on<K extends keyof Props<P>>(name: `$changed:${string & K}`, callback: ChangeCallback<Props<P>, K>): void;
on<K extends keyof E>(name: K, callback: (...args: any[] & E[K]) => void): void;
on<K extends keyof E>(name: K, callback: (...args: E[K] extends any[] ? E[K] : never) => void): void;
on<K extends keyof L>(name: K, callback: L[K]): void;

@@ -19,0 +19,0 @@ off<K extends keyof Events<P, E>>(name?: K, callback?: Function): void;

@@ -30,2 +30,3 @@ export declare type VNodeTag = string | ComponentConstructor | ComponentFunction | null;

leave(el: TransitionElement, remove: () => void): void;
show: boolean;
}

@@ -32,0 +33,0 @@ export interface TransitionElement extends HTMLElement {

{
"name": "intact-react",
"version": "3.0.0-beta.16",
"version": "3.0.0-beta.17",
"description": "A compatibility layer for running intact component in React@17",

@@ -32,5 +32,5 @@ "main": "index.js",

"dependencies": {
"intact": "^3.0.0-beta.16",
"intact": "^3.0.0-beta.17",
"tslib": "^2.3.1"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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