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

netlify-identity-widget

Package Overview
Dependencies
Maintainers
16
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

netlify-identity-widget - npm Package Compare versions

Comparing version 1.8.1-beta.0 to 1.8.1

.github/workflows/test.yml

23

CHANGELOG.md

@@ -10,2 +10,25 @@ # Changelog

## [v1.8.1](https://github.com/netlify/netlify-identity-widget/compare/v1.8.0...v1.8.1) - 2020-07-29
### Merged
- fix: ReferenceError: window is not defined [`#319`](https://github.com/netlify/netlify-identity-widget/pull/319)
- Feat: Update Spanish translation [`#333`](https://github.com/netlify/netlify-identity-widget/pull/333)
- Update correct dependencies [`#332`](https://github.com/netlify/netlify-identity-widget/pull/332)
- Feat: Add Spanish translation [`#327`](https://github.com/netlify/netlify-identity-widget/pull/327)
- Fix: Make "French" into "Français" [`#328`](https://github.com/netlify/netlify-identity-widget/pull/328)
- fix(deps): update dependency react-scripts to v3 [`#312`](https://github.com/netlify/netlify-identity-widget/pull/312)
- ci: switch to github actions [`#325`](https://github.com/netlify/netlify-identity-widget/pull/325)
- chore(deps): remove unused raw-loader dependency [`#304`](https://github.com/netlify/netlify-identity-widget/pull/304)
- chore: remove package-lock.json [`#303`](https://github.com/netlify/netlify-identity-widget/pull/303)
- fix: prevent double initialization [`#284`](https://github.com/netlify/netlify-identity-widget/pull/284)
- chore(deps): lock file maintenance [`#323`](https://github.com/netlify/netlify-identity-widget/pull/323)
- chore(deps): update dependency rimraf to v3 [`#301`](https://github.com/netlify/netlify-identity-widget/pull/301)
### Commits
- feat: adding Spanish translation [`54ed057`](https://github.com/netlify/netlify-identity-widget/commit/54ed057e06e1a97e5573f97f671eae62d1e94fa4)
- Feat: Update Spanish translation to an informal, friendly tone [`c27a300`](https://github.com/netlify/netlify-identity-widget/commit/c27a300e9330c8cdf46d08f60889799af37d9132)
- chore(deps): update dependency caniuse-lite to v1.0.30001104 [`ececa82`](https://github.com/netlify/netlify-identity-widget/commit/ececa82560ac4cd384e07ed5461601292cfb1847)
## [v1.8.0](https://github.com/netlify/netlify-identity-widget/compare/v1.7.0...v1.8.0) - 2020-07-06

@@ -12,0 +35,0 @@

29

package.json
{
"name": "netlify-identity-widget",
"description": "Netlify Identity widget for easy integration",
"version": "1.8.1-beta.0",
"version": "1.8.1",
"author": "Matt Biilmann <matt@netlify.com>",

@@ -27,3 +27,3 @@ "bugs": {

"cross-env": "^7.0.0",
"css-loader": "^3.0.0",
"css-loader": "^4.0.0",
"eslint": "^7.2.0",

@@ -33,3 +33,3 @@ "eslint-config-prettier": "^6.11.0",

"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react": "^7.20.5",
"file-loader": "^6.0.0",

@@ -41,19 +41,18 @@ "gh-release": "^3.4.0",

"mkdirp": "^1.0.0",
"mobx": "^3.2.2",
"mobx-preact": "^1.1.0",
"mobx": "^5.15.4",
"mobx-preact": "^3.0.0",
"npm-run-all": "^4.1.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.3",
"postcss-nested": "^3.0.0",
"preact": "^8.1.0",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"url-loader": "^0.6.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.3",
"preact": "8.5.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"source-map-loader": "^1.0.1",
"url-loader": "^4.1.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.0.0",
"webpack-node-externals": "^1.6.0"
"webpack-node-externals": "^2.5.0"
},

@@ -60,0 +59,0 @@ "homepage": "https://identity.netlify.com",

# Netlify Identity Widget
[![npm version](https://badge.fury.io/js/netlify-identity-widget.svg)](https://badge.fury.io/js/netlify-identity-widget)
A component used to authenticate with Netlify's Identity service.
[Live demo](https://identity.netlify.com)

@@ -10,3 +13,3 @@

Netlify’s Identity service is a plug-and-play microservice for handling site
Netlify's Identity service is a plug-and-play microservice for handling site
functionalities like signups, logins, password recovery, user metadata, and

@@ -155,3 +158,3 @@ roles. You can use it from single page apps instead of rolling your own, and

namePlaceholder: 'some-placeholder-for-Name'; // custom placeholder for name input form
locale: 'en'; // language code for translations - available: en, fr - default to en
locale: 'en'; // language code for translations - available: en, fr, es - default to en
}

@@ -197,6 +200,6 @@ ```

* Typescript Typings are maintained by @nkprince007 ([see PR](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/30689)): `npm install @types/netlify-identity-widget` and then `import * as NetlifyIdentityWidget from "netlify-identity-widget"` (or `import NetlifyIdentityWidget from "netlify-identity-widget"` if you have `--allowSyntheticDefaultImports` on)
* TypeScript Typings are maintained by @nkprince007 ([see PR](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/30689)): `npm install @types/netlify-identity-widget` and then `import * as NetlifyIdentityWidget from "netlify-identity-widget"` (or `import NetlifyIdentityWidget from "netlify-identity-widget"` if you have `--allowSyntheticDefaultImports` on)
* If you experience a 404 while testing the Netlify Identity Widget on a local
environment, you can manually remove the netlifySiteURL from localStorage by
environment, you can manually remove the `netlifySiteURL` from localStorage by
doing the following in the console.

@@ -203,0 +206,0 @@

@@ -10,2 +10,3 @@ import baseConfig from "./webpack.config.babel.js";

output: {
globalObject: "this",
path: path.resolve(__dirname, "build"),

@@ -12,0 +13,0 @@ publicPath: "/",

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

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