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

final-form-persist

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

final-form-persist - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

1

dist/index.d.ts

@@ -11,3 +11,4 @@ import { Decorator } from "final-form";

clear: () => void;
isPersisted: boolean;
}
export declare const createPersistDecorator: (options: FinalFormPersistOptions) => FinalFormPersistDecorator;

@@ -439,2 +439,3 @@ /*! *****************************************************************************

clear: clear,
isPersisted: !!storage.getItem(name),
};

@@ -441,0 +442,0 @@ };

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

clear: clear,
isPersisted: !!storage.getItem(name),
};

@@ -445,0 +446,0 @@ };

2

package.json
{
"name": "final-form-persist",
"version": "1.0.0",
"version": "1.0.1",
"description": "Persist your form values into a storage",

@@ -5,0 +5,0 @@ "author": "premieroctet",

@@ -45,2 +45,6 @@ # final-form-persist

## Example
[Example](https://codesandbox.io/s/final-form-persist-example-s4wz5) build with [react-final-form](https://github.com/final-form/react-final-form)
## API

@@ -54,6 +58,6 @@

createPersistDecorator = ({
name: string;
debounceTime?: number;
whitelist: string[];
storage?: Storage;
name: string
debounceTime?: number
whitelist: string[]
storage?: Storage
}) => FinalFormPersistDecorator

@@ -68,2 +72,3 @@ ```

clear: () => void
isPersisted: boolean
}

@@ -70,0 +75,0 @@ ```

Sorry, the diff of this file is not supported yet

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