@panneau/forms 2.0.11 → 2.0.15
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 +11 -1
- package/lib/index.js +11 -1
- package/package.json +8 -7
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.
|
|
3
|
+
"version": "2.0.15",
|
|
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.
|
|
66
|
-
"@panneau/form-
|
|
67
|
-
"@panneau/form-
|
|
68
|
-
"@panneau/form-
|
|
69
|
-
"@panneau/form-
|
|
65
|
+
"@panneau/core": "^2.0.15",
|
|
66
|
+
"@panneau/form-auth": "^2.0.15",
|
|
67
|
+
"@panneau/form-horizontal": "^2.0.15",
|
|
68
|
+
"@panneau/form-inline": "^2.0.15",
|
|
69
|
+
"@panneau/form-normal": "^2.0.15",
|
|
70
|
+
"@panneau/form-two-pane": "^2.0.15",
|
|
70
71
|
"prop-types": "^15.7.2"
|
|
71
72
|
},
|
|
72
73
|
"publishConfig": {
|
|
73
74
|
"access": "public"
|
|
74
75
|
},
|
|
75
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "7eff06c0b11fc480d1cf437036dbe0e0ef893650"
|
|
76
77
|
}
|