@spark-web/design-system 0.4.5 → 0.4.6
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.
|
@@ -26,6 +26,7 @@ export * from '@spark-web/inline';
|
|
|
26
26
|
export * from '@spark-web/link';
|
|
27
27
|
export * from '@spark-web/modal-dialog';
|
|
28
28
|
export * from '@spark-web/nav-link';
|
|
29
|
+
export * from '@spark-web/toggle-group';
|
|
29
30
|
export * from '@spark-web/password-input';
|
|
30
31
|
export * from '@spark-web/radio';
|
|
31
32
|
export * from '@spark-web/row';
|
|
@@ -30,6 +30,7 @@ var inline = require('@spark-web/inline');
|
|
|
30
30
|
var link = require('@spark-web/link');
|
|
31
31
|
var modalDialog = require('@spark-web/modal-dialog');
|
|
32
32
|
var navLink = require('@spark-web/nav-link');
|
|
33
|
+
var toggleGroup = require('@spark-web/toggle-group');
|
|
33
34
|
var passwordInput = require('@spark-web/password-input');
|
|
34
35
|
var radio = require('@spark-web/radio');
|
|
35
36
|
var row = require('@spark-web/row');
|
|
@@ -217,6 +218,12 @@ Object.keys(navLink).forEach(function (k) {
|
|
|
217
218
|
get: function () { return navLink[k]; }
|
|
218
219
|
});
|
|
219
220
|
});
|
|
221
|
+
Object.keys(toggleGroup).forEach(function (k) {
|
|
222
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function () { return toggleGroup[k]; }
|
|
225
|
+
});
|
|
226
|
+
});
|
|
220
227
|
Object.keys(passwordInput).forEach(function (k) {
|
|
221
228
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
222
229
|
enumerable: true,
|
|
@@ -30,6 +30,7 @@ var inline = require('@spark-web/inline');
|
|
|
30
30
|
var link = require('@spark-web/link');
|
|
31
31
|
var modalDialog = require('@spark-web/modal-dialog');
|
|
32
32
|
var navLink = require('@spark-web/nav-link');
|
|
33
|
+
var toggleGroup = require('@spark-web/toggle-group');
|
|
33
34
|
var passwordInput = require('@spark-web/password-input');
|
|
34
35
|
var radio = require('@spark-web/radio');
|
|
35
36
|
var row = require('@spark-web/row');
|
|
@@ -217,6 +218,12 @@ Object.keys(navLink).forEach(function (k) {
|
|
|
217
218
|
get: function () { return navLink[k]; }
|
|
218
219
|
});
|
|
219
220
|
});
|
|
221
|
+
Object.keys(toggleGroup).forEach(function (k) {
|
|
222
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function () { return toggleGroup[k]; }
|
|
225
|
+
});
|
|
226
|
+
});
|
|
220
227
|
Object.keys(passwordInput).forEach(function (k) {
|
|
221
228
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
222
229
|
enumerable: true,
|
|
@@ -26,6 +26,7 @@ export * from '@spark-web/inline';
|
|
|
26
26
|
export * from '@spark-web/link';
|
|
27
27
|
export * from '@spark-web/modal-dialog';
|
|
28
28
|
export * from '@spark-web/nav-link';
|
|
29
|
+
export * from '@spark-web/toggle-group';
|
|
29
30
|
export * from '@spark-web/password-input';
|
|
30
31
|
export * from '@spark-web/radio';
|
|
31
32
|
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.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/spark-web-design-system.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-design-system.esm.js",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"@spark-web/text-link": "1.1.0",
|
|
52
52
|
"@spark-web/text-list": "2.1.0",
|
|
53
53
|
"@spark-web/theme": "3.2.1",
|
|
54
|
+
"@spark-web/toggle-group": "0.0.1",
|
|
54
55
|
"@spark-web/utils": "1.3.0",
|
|
55
56
|
"@spark-web/vertical-stepper": "2.2.1"
|
|
56
57
|
},
|