@spark-web/design-system 0.4.5 → 0.4.7
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,7 +25,9 @@ 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';
|
|
30
|
+
export * from '@spark-web/toggle-group';
|
|
29
31
|
export * from '@spark-web/password-input';
|
|
30
32
|
export * from '@spark-web/radio';
|
|
31
33
|
export * from '@spark-web/row';
|
|
@@ -29,7 +29,9 @@ 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');
|
|
34
|
+
var toggleGroup = require('@spark-web/toggle-group');
|
|
33
35
|
var passwordInput = require('@spark-web/password-input');
|
|
34
36
|
var radio = require('@spark-web/radio');
|
|
35
37
|
var row = require('@spark-web/row');
|
|
@@ -211,12 +213,24 @@ Object.keys(modalDialog).forEach(function (k) {
|
|
|
211
213
|
get: function () { return modalDialog[k]; }
|
|
212
214
|
});
|
|
213
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
|
+
});
|
|
214
222
|
Object.keys(navLink).forEach(function (k) {
|
|
215
223
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
216
224
|
enumerable: true,
|
|
217
225
|
get: function () { return navLink[k]; }
|
|
218
226
|
});
|
|
219
227
|
});
|
|
228
|
+
Object.keys(toggleGroup).forEach(function (k) {
|
|
229
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
230
|
+
enumerable: true,
|
|
231
|
+
get: function () { return toggleGroup[k]; }
|
|
232
|
+
});
|
|
233
|
+
});
|
|
220
234
|
Object.keys(passwordInput).forEach(function (k) {
|
|
221
235
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
222
236
|
enumerable: true,
|
|
@@ -29,7 +29,9 @@ 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');
|
|
34
|
+
var toggleGroup = require('@spark-web/toggle-group');
|
|
33
35
|
var passwordInput = require('@spark-web/password-input');
|
|
34
36
|
var radio = require('@spark-web/radio');
|
|
35
37
|
var row = require('@spark-web/row');
|
|
@@ -211,12 +213,24 @@ Object.keys(modalDialog).forEach(function (k) {
|
|
|
211
213
|
get: function () { return modalDialog[k]; }
|
|
212
214
|
});
|
|
213
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
|
+
});
|
|
214
222
|
Object.keys(navLink).forEach(function (k) {
|
|
215
223
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
216
224
|
enumerable: true,
|
|
217
225
|
get: function () { return navLink[k]; }
|
|
218
226
|
});
|
|
219
227
|
});
|
|
228
|
+
Object.keys(toggleGroup).forEach(function (k) {
|
|
229
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
230
|
+
enumerable: true,
|
|
231
|
+
get: function () { return toggleGroup[k]; }
|
|
232
|
+
});
|
|
233
|
+
});
|
|
220
234
|
Object.keys(passwordInput).forEach(function (k) {
|
|
221
235
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
222
236
|
enumerable: true,
|
|
@@ -25,7 +25,9 @@ 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';
|
|
30
|
+
export * from '@spark-web/toggle-group';
|
|
29
31
|
export * from '@spark-web/password-input';
|
|
30
32
|
export * from '@spark-web/radio';
|
|
31
33
|
export * from '@spark-web/row';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/design-system",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
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.1",
|
|
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",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"@spark-web/text-link": "1.1.0",
|
|
52
53
|
"@spark-web/text-list": "2.1.0",
|
|
53
54
|
"@spark-web/theme": "3.2.1",
|
|
55
|
+
"@spark-web/toggle-group": "0.0.1",
|
|
54
56
|
"@spark-web/utils": "1.3.0",
|
|
55
57
|
"@spark-web/vertical-stepper": "2.2.1"
|
|
56
58
|
},
|