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

final-form-persist

Package Overview
Dependencies
Maintainers
2
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.1 to 1.0.2

2

dist/index.d.ts

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

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

@@ -425,3 +425,3 @@ /*! *****************************************************************************

}
}, debounceTime), { values: true, pristine: true });
}, debounceTime, { leading: true, trailing: true }), { values: true, pristine: true });
return unsubscribe;

@@ -437,6 +437,7 @@ }; };

};
var isPersisted = function () { return !!storage.getItem(name); };
return {
persistDecorator: persistDecorator(options),
clear: clear,
isPersisted: !!storage.getItem(name),
isPersisted: isPersisted
};

@@ -443,0 +444,0 @@ };

@@ -429,3 +429,3 @@ 'use strict';

}
}, debounceTime), { values: true, pristine: true });
}, debounceTime, { leading: true, trailing: true }), { values: true, pristine: true });
return unsubscribe;

@@ -441,6 +441,7 @@ }; };

};
var isPersisted = function () { return !!storage.getItem(name); };
return {
persistDecorator: persistDecorator(options),
clear: clear,
isPersisted: !!storage.getItem(name),
isPersisted: isPersisted
};

@@ -447,0 +448,0 @@ };

{
"name": "final-form-persist",
"version": "1.0.1",
"version": "1.0.2",
"description": "Persist your form values into a storage",

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

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