@panneau/forms 2.0.14 → 2.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/es/index.js CHANGED
@@ -5,6 +5,7 @@ import formHorizontal from '@panneau/form-horizontal';
5
5
  import formInline from '@panneau/form-inline';
6
6
  import formNormal from '@panneau/form-normal';
7
7
  import formTwoPane from '@panneau/form-two-pane';
8
+ import { ChangePassword, ConfirmPassword, ForgotPassword, Login, Register, ResetPassword, TwoFactorChallenge, TwoFactorDisable, TwoFactorEnable } from '@panneau/form-auth';
8
9
 
9
10
  // Import forms
10
11
 
@@ -13,7 +14,16 @@ var components = /*#__PURE__*/Object.freeze({
13
14
  Horizontal: formHorizontal,
14
15
  Inline: formInline,
15
16
  Normal: formNormal,
16
- TwoPane: formTwoPane
17
+ TwoPane: formTwoPane,
18
+ ChangePassword: ChangePassword,
19
+ ConfirmPassword: ConfirmPassword,
20
+ ForgotPassword: ForgotPassword,
21
+ Login: Login,
22
+ Register: Register,
23
+ ResetPassword: ResetPassword,
24
+ TwoFactorChallenge: TwoFactorChallenge,
25
+ TwoFactorDisable: TwoFactorDisable,
26
+ TwoFactorEnable: TwoFactorEnable
17
27
  });
18
28
 
19
29
  /* eslint-disable react/jsx-props-no-spreading */
package/lib/index.js CHANGED
@@ -9,6 +9,7 @@ var formHorizontal = require('@panneau/form-horizontal');
9
9
  var formInline = require('@panneau/form-inline');
10
10
  var formNormal = require('@panneau/form-normal');
11
11
  var formTwoPane = require('@panneau/form-two-pane');
12
+ var formAuth = require('@panneau/form-auth');
12
13
 
13
14
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
14
15
 
@@ -26,7 +27,16 @@ var components = /*#__PURE__*/Object.freeze({
26
27
  Horizontal: formHorizontal__default["default"],
27
28
  Inline: formInline__default["default"],
28
29
  Normal: formNormal__default["default"],
29
- TwoPane: formTwoPane__default["default"]
30
+ TwoPane: formTwoPane__default["default"],
31
+ ChangePassword: formAuth.ChangePassword,
32
+ ConfirmPassword: formAuth.ConfirmPassword,
33
+ ForgotPassword: formAuth.ForgotPassword,
34
+ Login: formAuth.Login,
35
+ Register: formAuth.Register,
36
+ ResetPassword: formAuth.ResetPassword,
37
+ TwoFactorChallenge: formAuth.TwoFactorChallenge,
38
+ TwoFactorDisable: formAuth.TwoFactorDisable,
39
+ TwoFactorEnable: formAuth.TwoFactorEnable
30
40
  });
31
41
 
32
42
  /* eslint-disable react/jsx-props-no-spreading */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panneau/forms",
3
- "version": "2.0.14",
3
+ "version": "2.0.16",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "javascript"
@@ -62,15 +62,16 @@
62
62
  },
63
63
  "dependencies": {
64
64
  "@babel/runtime": "^7.12.5",
65
- "@panneau/core": "^2.0.14",
66
- "@panneau/form-horizontal": "^2.0.14",
67
- "@panneau/form-inline": "^2.0.14",
68
- "@panneau/form-normal": "^2.0.14",
69
- "@panneau/form-two-pane": "^2.0.14",
65
+ "@panneau/core": "^2.0.15",
66
+ "@panneau/form-auth": "^2.0.16",
67
+ "@panneau/form-horizontal": "^2.0.16",
68
+ "@panneau/form-inline": "^2.0.16",
69
+ "@panneau/form-normal": "^2.0.16",
70
+ "@panneau/form-two-pane": "^2.0.16",
70
71
  "prop-types": "^15.7.2"
71
72
  },
72
73
  "publishConfig": {
73
74
  "access": "public"
74
75
  },
75
- "gitHead": "79bf4785d664187a578822e02dd66c12d6e4d243"
76
+ "gitHead": "47cc2d1083c3c387e615426f0de392c70d1817d6"
76
77
  }