@negative-space/data-entry 1.3.0 → 1.4.0

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/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@negative-space/checkbox';
2
+ export * from '@negative-space/form';
2
3
  export * from '@negative-space/input';
3
4
  export * from '@negative-space/listbox';
4
5
  export * from '@negative-space/radio';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@negative-space/checkbox';
2
+ export * from '@negative-space/form';
2
3
  export * from '@negative-space/input';
3
4
  export * from '@negative-space/listbox';
4
5
  export * from '@negative-space/radio';
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var checkbox = require('@negative-space/checkbox');
4
+ var form = require('@negative-space/form');
4
5
  var input = require('@negative-space/input');
5
6
  var listbox = require('@negative-space/listbox');
6
7
  var radio = require('@negative-space/radio');
@@ -14,6 +15,12 @@ Object.keys(checkbox).forEach(function (k) {
14
15
  get: function () { return checkbox[k]; }
15
16
  });
16
17
  });
18
+ Object.keys(form).forEach(function (k) {
19
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
20
+ enumerable: true,
21
+ get: function () { return form[k]; }
22
+ });
23
+ });
17
24
  Object.keys(input).forEach(function (k) {
18
25
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
19
26
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@negative-space/checkbox';
2
+ export * from '@negative-space/form';
2
3
  export * from '@negative-space/input';
3
4
  export * from '@negative-space/listbox';
4
5
  export * from '@negative-space/radio';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@negative-space/data-entry",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,10 +30,11 @@
30
30
  "url": "https://github.com/negative-space-ui/nsui/issues"
31
31
  },
32
32
  "dependencies": {
33
+ "@negative-space/form": "1.0.0",
33
34
  "@negative-space/checkbox": "1.5.0",
34
35
  "@negative-space/input": "1.2.0",
35
- "@negative-space/listbox": "1.5.0",
36
36
  "@negative-space/radio": "1.7.0",
37
+ "@negative-space/listbox": "1.5.0",
37
38
  "@negative-space/switch": "1.0.0"
38
39
  },
39
40
  "clean-package": "../../../clean-package.config.json",