@panneau/forms 1.0.0-alpha.17 → 1.0.0-alpha.170

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,7 +5,6 @@ import formNormal from '@panneau/form-normal';
5
5
  import formInline from '@panneau/form-inline';
6
6
  import formHorizontal from '@panneau/form-horizontal';
7
7
  import formTwoPane from '@panneau/form-two-pane';
8
- import formDelete from '@panneau/form-delete';
9
8
 
10
9
  // Import forms
11
10
 
@@ -14,8 +13,7 @@ var components = /*#__PURE__*/Object.freeze({
14
13
  Normal: formNormal,
15
14
  Inline: formInline,
16
15
  Horizontal: formHorizontal,
17
- TwoPane: formTwoPane,
18
- Delete: formDelete
16
+ TwoPane: formTwoPane
19
17
  });
20
18
 
21
19
  /* eslint-disable react/jsx-props-no-spreading */
package/lib/index.js CHANGED
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  var React = require('react');
4
6
  var PropTypes = require('prop-types');
5
7
  var contexts = require('@panneau/core/contexts');
@@ -7,7 +9,6 @@ var formNormal = require('@panneau/form-normal');
7
9
  var formInline = require('@panneau/form-inline');
8
10
  var formHorizontal = require('@panneau/form-horizontal');
9
11
  var formTwoPane = require('@panneau/form-two-pane');
10
- var formDelete = require('@panneau/form-delete');
11
12
 
12
13
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
13
14
 
@@ -17,7 +18,6 @@ var formNormal__default = /*#__PURE__*/_interopDefaultLegacy(formNormal);
17
18
  var formInline__default = /*#__PURE__*/_interopDefaultLegacy(formInline);
18
19
  var formHorizontal__default = /*#__PURE__*/_interopDefaultLegacy(formHorizontal);
19
20
  var formTwoPane__default = /*#__PURE__*/_interopDefaultLegacy(formTwoPane);
20
- var formDelete__default = /*#__PURE__*/_interopDefaultLegacy(formDelete);
21
21
 
22
22
  // Import forms
23
23
 
@@ -26,8 +26,7 @@ var components = /*#__PURE__*/Object.freeze({
26
26
  Normal: formNormal__default['default'],
27
27
  Inline: formInline__default['default'],
28
28
  Horizontal: formHorizontal__default['default'],
29
- TwoPane: formTwoPane__default['default'],
30
- Delete: formDelete__default['default']
29
+ TwoPane: formTwoPane__default['default']
31
30
  });
32
31
 
33
32
  /* eslint-disable react/jsx-props-no-spreading */
@@ -48,4 +47,4 @@ var FormsProvider = function FormsProvider(props) {
48
47
  FormsProvider.propTypes = propTypes;
49
48
  FormsProvider.defaultProps = defaultProps;
50
49
 
51
- module.exports = FormsProvider;
50
+ exports.default = FormsProvider;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panneau/forms",
3
- "version": "1.0.0-alpha.17",
3
+ "version": "1.0.0-alpha.170",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "javascript"
@@ -41,8 +41,7 @@
41
41
  "assets"
42
42
  ],
43
43
  "scripts": {
44
- "prepare": "../../scripts/prepare-package.sh --scss",
45
- "start": "PUBLIC_URL=http://localhost/ react-scripts start"
44
+ "prepare": "../../scripts/prepare-package.sh --scss"
46
45
  },
47
46
  "devDependencies": {
48
47
  "react": "^16.8.0",
@@ -54,16 +53,15 @@
54
53
  },
55
54
  "dependencies": {
56
55
  "@babel/runtime": "^7.12.5",
57
- "@panneau/core": "^1.0.0-alpha.17",
58
- "@panneau/form-delete": "^1.0.0-alpha.16",
59
- "@panneau/form-horizontal": "^1.0.0-alpha.17",
60
- "@panneau/form-inline": "^1.0.0-alpha.17",
61
- "@panneau/form-normal": "^1.0.0-alpha.17",
62
- "@panneau/form-two-pane": "^1.0.0-alpha.17",
56
+ "@panneau/core": "^1.0.0-alpha.170",
57
+ "@panneau/form-horizontal": "^1.0.0-alpha.170",
58
+ "@panneau/form-inline": "^1.0.0-alpha.170",
59
+ "@panneau/form-normal": "^1.0.0-alpha.170",
60
+ "@panneau/form-two-pane": "^1.0.0-alpha.170",
63
61
  "prop-types": "^15.7.2"
64
62
  },
65
63
  "publishConfig": {
66
64
  "access": "public"
67
65
  },
68
- "gitHead": "f00770151aa406ea4152289a705a56b9e07173c6"
66
+ "gitHead": "bba760fc2b560b9a0467b6e22d9bd8ca8618abb2"
69
67
  }