@panneau/forms 1.0.0-alpha.232 → 1.0.0-alpha.237
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 +4 -4
- package/lib/index.js +6 -6
- package/package.json +7 -7
package/es/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { ComponentsProvider, FORMS_NAMESPACE } from '@panneau/core/contexts';
|
|
4
|
-
import formNormal from '@panneau/form-normal';
|
|
5
|
-
import formInline from '@panneau/form-inline';
|
|
6
4
|
import formHorizontal from '@panneau/form-horizontal';
|
|
5
|
+
import formInline from '@panneau/form-inline';
|
|
6
|
+
import formNormal from '@panneau/form-normal';
|
|
7
7
|
import formTwoPane from '@panneau/form-two-pane';
|
|
8
8
|
|
|
9
9
|
// Import forms
|
|
10
10
|
|
|
11
11
|
var components = /*#__PURE__*/Object.freeze({
|
|
12
12
|
__proto__: null,
|
|
13
|
-
Normal: formNormal,
|
|
14
|
-
Inline: formInline,
|
|
15
13
|
Horizontal: formHorizontal,
|
|
14
|
+
Inline: formInline,
|
|
15
|
+
Normal: formNormal,
|
|
16
16
|
TwoPane: formTwoPane
|
|
17
17
|
});
|
|
18
18
|
|
package/lib/index.js
CHANGED
|
@@ -5,27 +5,27 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var React = require('react');
|
|
6
6
|
var PropTypes = require('prop-types');
|
|
7
7
|
var contexts = require('@panneau/core/contexts');
|
|
8
|
-
var formNormal = require('@panneau/form-normal');
|
|
9
|
-
var formInline = require('@panneau/form-inline');
|
|
10
8
|
var formHorizontal = require('@panneau/form-horizontal');
|
|
9
|
+
var formInline = require('@panneau/form-inline');
|
|
10
|
+
var formNormal = require('@panneau/form-normal');
|
|
11
11
|
var formTwoPane = require('@panneau/form-two-pane');
|
|
12
12
|
|
|
13
13
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
14
14
|
|
|
15
15
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
16
16
|
var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
|
|
17
|
-
var formNormal__default = /*#__PURE__*/_interopDefaultLegacy(formNormal);
|
|
18
|
-
var formInline__default = /*#__PURE__*/_interopDefaultLegacy(formInline);
|
|
19
17
|
var formHorizontal__default = /*#__PURE__*/_interopDefaultLegacy(formHorizontal);
|
|
18
|
+
var formInline__default = /*#__PURE__*/_interopDefaultLegacy(formInline);
|
|
19
|
+
var formNormal__default = /*#__PURE__*/_interopDefaultLegacy(formNormal);
|
|
20
20
|
var formTwoPane__default = /*#__PURE__*/_interopDefaultLegacy(formTwoPane);
|
|
21
21
|
|
|
22
22
|
// Import forms
|
|
23
23
|
|
|
24
24
|
var components = /*#__PURE__*/Object.freeze({
|
|
25
25
|
__proto__: null,
|
|
26
|
-
Normal: formNormal__default["default"],
|
|
27
|
-
Inline: formInline__default["default"],
|
|
28
26
|
Horizontal: formHorizontal__default["default"],
|
|
27
|
+
Inline: formInline__default["default"],
|
|
28
|
+
Normal: formNormal__default["default"],
|
|
29
29
|
TwoPane: formTwoPane__default["default"]
|
|
30
30
|
});
|
|
31
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panneau/forms",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.237",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -53,15 +53,15 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@babel/runtime": "^7.12.5",
|
|
56
|
-
"@panneau/core": "^1.0.0-alpha.
|
|
57
|
-
"@panneau/form-horizontal": "^1.0.0-alpha.
|
|
58
|
-
"@panneau/form-inline": "^1.0.0-alpha.
|
|
59
|
-
"@panneau/form-normal": "^1.0.0-alpha.
|
|
60
|
-
"@panneau/form-two-pane": "^1.0.0-alpha.
|
|
56
|
+
"@panneau/core": "^1.0.0-alpha.237",
|
|
57
|
+
"@panneau/form-horizontal": "^1.0.0-alpha.237",
|
|
58
|
+
"@panneau/form-inline": "^1.0.0-alpha.237",
|
|
59
|
+
"@panneau/form-normal": "^1.0.0-alpha.237",
|
|
60
|
+
"@panneau/form-two-pane": "^1.0.0-alpha.237",
|
|
61
61
|
"prop-types": "^15.7.2"
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "04ba18e9dc24997f869503808313cfab7f5065b2"
|
|
67
67
|
}
|