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

final-form-app-form

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

final-form-app-form - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

3

dist/compose.d.ts

@@ -1,2 +0,1 @@

/// <reference types="react" />
export declare function compose(props: any): (Component: any) => JSX.Element;
export declare function compose(containerProps: any): (Component: any) => (props: any) => any;

@@ -1,15 +0,6 @@

import React from "react";
export function compose(props) {
export function compose(containerProps) {
return function (Component) {
return React.createElement(Component, Object.assign({}, props));
return (props) => Component(Object.assign(Object.assign({}, containerProps), props));
};
}
// function compose2(props) {
// return function compose22(Component) {
// const Component2 = <Component {...props}/>;
//
// // return hoistStatics(Connect, WrappedComponent)
// return Component2;
// };
// }
//# sourceMappingURL=compose.js.map
{
"name": "final-form-app-form",
"version": "0.0.13",
"version": "0.0.14",
"description": "utils for final form using",

@@ -5,0 +5,0 @@ "contributors": [

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