@spark-web/design-system 0.4.6 → 0.4.8

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.
@@ -25,6 +25,7 @@ export * from '@spark-web/icon';
25
25
  export * from '@spark-web/inline';
26
26
  export * from '@spark-web/link';
27
27
  export * from '@spark-web/modal-dialog';
28
+ export * from '@spark-web/multi-select';
28
29
  export * from '@spark-web/nav-link';
29
30
  export * from '@spark-web/toggle-group';
30
31
  export * from '@spark-web/password-input';
@@ -29,6 +29,7 @@ var icon = require('@spark-web/icon');
29
29
  var inline = require('@spark-web/inline');
30
30
  var link = require('@spark-web/link');
31
31
  var modalDialog = require('@spark-web/modal-dialog');
32
+ var multiSelect = require('@spark-web/multi-select');
32
33
  var navLink = require('@spark-web/nav-link');
33
34
  var toggleGroup = require('@spark-web/toggle-group');
34
35
  var passwordInput = require('@spark-web/password-input');
@@ -212,6 +213,12 @@ Object.keys(modalDialog).forEach(function (k) {
212
213
  get: function () { return modalDialog[k]; }
213
214
  });
214
215
  });
216
+ Object.keys(multiSelect).forEach(function (k) {
217
+ if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
218
+ enumerable: true,
219
+ get: function () { return multiSelect[k]; }
220
+ });
221
+ });
215
222
  Object.keys(navLink).forEach(function (k) {
216
223
  if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
217
224
  enumerable: true,
@@ -29,6 +29,7 @@ var icon = require('@spark-web/icon');
29
29
  var inline = require('@spark-web/inline');
30
30
  var link = require('@spark-web/link');
31
31
  var modalDialog = require('@spark-web/modal-dialog');
32
+ var multiSelect = require('@spark-web/multi-select');
32
33
  var navLink = require('@spark-web/nav-link');
33
34
  var toggleGroup = require('@spark-web/toggle-group');
34
35
  var passwordInput = require('@spark-web/password-input');
@@ -212,6 +213,12 @@ Object.keys(modalDialog).forEach(function (k) {
212
213
  get: function () { return modalDialog[k]; }
213
214
  });
214
215
  });
216
+ Object.keys(multiSelect).forEach(function (k) {
217
+ if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
218
+ enumerable: true,
219
+ get: function () { return multiSelect[k]; }
220
+ });
221
+ });
215
222
  Object.keys(navLink).forEach(function (k) {
216
223
  if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
217
224
  enumerable: true,
@@ -25,6 +25,7 @@ export * from '@spark-web/icon';
25
25
  export * from '@spark-web/inline';
26
26
  export * from '@spark-web/link';
27
27
  export * from '@spark-web/modal-dialog';
28
+ export * from '@spark-web/multi-select';
28
29
  export * from '@spark-web/nav-link';
29
30
  export * from '@spark-web/toggle-group';
30
31
  export * from '@spark-web/password-input';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-web/design-system",
3
- "version": "0.4.6",
3
+ "version": "0.4.8",
4
4
  "license": "MIT",
5
5
  "main": "dist/spark-web-design-system.cjs.js",
6
6
  "module": "dist/spark-web-design-system.esm.js",
@@ -35,6 +35,7 @@
35
35
  "@spark-web/inline": "1.1.0",
36
36
  "@spark-web/link": "1.1.0",
37
37
  "@spark-web/modal-dialog": "3.0.0",
38
+ "@spark-web/multi-select": "0.0.2",
38
39
  "@spark-web/nav-link": "1.2.0",
39
40
  "@spark-web/next-utils": "1.2.0",
40
41
  "@spark-web/password-input": "2.0.0",