Socket
Socket
Sign inDemoInstall

auth0-contact-form

Package Overview
Dependencies
3
Maintainers
3
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.5 to 2.0.0

build/contact-form.css

23

CHANGELOG.md
1.3.6 / 2017-04-20
2.0.0 / 2017-04-24
==================
* Update README.md
* Fix playground
* dont throw on node, handleQueryString has showOpts, npm module has all deps as externals and exports changed
* Fix changelog
* Release 1.3.5
1.3.5 / 2017-04-20
==================
* Fix form submit when includePhoneField is false
* Release 1.3.4
* Merge pull request #16 from auth0/remove-phone-validation
* Remove phone validation
* Release 1.3.3
* Merge pull request #15 from mike-casas/newfield
* fix show method to get a object
* fix element validate
* add phone field

@@ -21,6 +22,2 @@ 1.3.4 / 2017-04-10

* Release 1.3.3
* Merge pull request #15 from mike-casas/newfield
* fix show method to get a object
* fix element validate
* add phone field

@@ -27,0 +24,0 @@ 1.3.3 / 2017-04-07

{
"name": "auth0-contact-form",
"version": "1.3.5",
"version": "2.0.0",
"description": "Auth0 team contact form",
"main": "dist/contact-form.js",
"main": "build/contact-form.js",
"scripts": {
"build": "NODE_ENV=production gulp build && NODE_ENV=production REMOVE_MODAL=true gulp build",
"build": "npm run build:normal && npm run build:cdn",
"build:normal": "NODE_ENV=production webpack --config tools/webpack.module.config.js",
"build:cdn": "NODE_ENV=production CDN=true webpack --config tools/webpack.module.config.js",
"start": "gulp start:dev",

@@ -14,3 +16,4 @@ "prepublish": "npm run build",

"files": [
"dist/"
"build",
"cdn"
],

@@ -35,6 +38,6 @@ "repository": {

"dependencies": {
"bootstrap": "^3.3.6",
"lodash": "^4.13.1"
},
"peerDependencies": {
"bootstrap": "^3.3.6",
"jquery": "^2.2.4 || ^3.0.0"

@@ -51,3 +54,3 @@ },

"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"bootstrap": "^3.3.6",
"browser-sync": "^2.13.0",

@@ -66,2 +69,3 @@ "css-loader": "^0.23.1",

"jade-loader": "^0.8.0",
"jquery": "^2.2.4",
"json-loader": "^0.5.4",

@@ -74,4 +78,5 @@ "poststylus": "^0.2.3",

"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1"
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.5.4"
}
}

@@ -7,3 +7,3 @@ # Auth0 Contact Form

```javascript
npm i --save auth0-contact-form jquery@2
npm i --save auth0-contact-form jquery@2 bootstrap@3
```

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

Needs jQuery, because is a peer dependency.
Needs jQuery and bootstrap.js, because they are peer dependencies.

@@ -20,4 +20,5 @@ ### Example

```javascript
import jQuery from 'jquery';
import { ContactForm } from 'auth0-contact-form';
import 'jquery';
import 'bootstrap';
import ContactForm from 'auth0-contact-form';

@@ -39,3 +40,3 @@ const metricsLib = window.metricsLib;

```stylus
@import '../node_modules/auth0-contact-form/dist/contact-form.css'
@import '../node_modules/auth0-contact-form/build/contact-form.css'
```

@@ -65,3 +66,4 @@

```javascript
import jQuery from 'jquery';
import 'jquery';
import 'bootstrap';
import { handleQueryString } from 'auth0-contact-form';

@@ -68,0 +70,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc