@spark-web/design-system 0.1.0 → 0.2.1
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.
|
@@ -12,6 +12,7 @@ export * from '@spark-web/container';
|
|
|
12
12
|
export * from '@spark-web/control-label';
|
|
13
13
|
export * from '@spark-web/core';
|
|
14
14
|
export * from '@spark-web/currency-input';
|
|
15
|
+
export * from '@spark-web/date-picker';
|
|
15
16
|
export * from '@spark-web/divider';
|
|
16
17
|
export * from '@spark-web/dropzone';
|
|
17
18
|
export * from '@spark-web/field';
|
|
@@ -16,6 +16,7 @@ var container = require('@spark-web/container');
|
|
|
16
16
|
var controlLabel = require('@spark-web/control-label');
|
|
17
17
|
var core = require('@spark-web/core');
|
|
18
18
|
var currencyInput = require('@spark-web/currency-input');
|
|
19
|
+
var datePicker = require('@spark-web/date-picker');
|
|
19
20
|
var divider = require('@spark-web/divider');
|
|
20
21
|
var dropzone = require('@spark-web/dropzone');
|
|
21
22
|
var field = require('@spark-web/field');
|
|
@@ -130,6 +131,12 @@ Object.keys(currencyInput).forEach(function (k) {
|
|
|
130
131
|
get: function () { return currencyInput[k]; }
|
|
131
132
|
});
|
|
132
133
|
});
|
|
134
|
+
Object.keys(datePicker).forEach(function (k) {
|
|
135
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () { return datePicker[k]; }
|
|
138
|
+
});
|
|
139
|
+
});
|
|
133
140
|
Object.keys(divider).forEach(function (k) {
|
|
134
141
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
135
142
|
enumerable: true,
|
|
@@ -16,6 +16,7 @@ var container = require('@spark-web/container');
|
|
|
16
16
|
var controlLabel = require('@spark-web/control-label');
|
|
17
17
|
var core = require('@spark-web/core');
|
|
18
18
|
var currencyInput = require('@spark-web/currency-input');
|
|
19
|
+
var datePicker = require('@spark-web/date-picker');
|
|
19
20
|
var divider = require('@spark-web/divider');
|
|
20
21
|
var dropzone = require('@spark-web/dropzone');
|
|
21
22
|
var field = require('@spark-web/field');
|
|
@@ -130,6 +131,12 @@ Object.keys(currencyInput).forEach(function (k) {
|
|
|
130
131
|
get: function () { return currencyInput[k]; }
|
|
131
132
|
});
|
|
132
133
|
});
|
|
134
|
+
Object.keys(datePicker).forEach(function (k) {
|
|
135
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () { return datePicker[k]; }
|
|
138
|
+
});
|
|
139
|
+
});
|
|
133
140
|
Object.keys(divider).forEach(function (k) {
|
|
134
141
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
135
142
|
enumerable: true,
|
|
@@ -12,6 +12,7 @@ export * from '@spark-web/container';
|
|
|
12
12
|
export * from '@spark-web/control-label';
|
|
13
13
|
export * from '@spark-web/core';
|
|
14
14
|
export * from '@spark-web/currency-input';
|
|
15
|
+
export * from '@spark-web/date-picker';
|
|
15
16
|
export * from '@spark-web/divider';
|
|
16
17
|
export * from '@spark-web/dropzone';
|
|
17
18
|
export * from '@spark-web/field';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/design-system",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/spark-web-design-system.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-design-system.esm.js",
|
|
@@ -17,11 +17,12 @@
|
|
|
17
17
|
"@spark-web/button": "1.4.4",
|
|
18
18
|
"@spark-web/checkbox": "1.0.11",
|
|
19
19
|
"@spark-web/columns": "2.0.5",
|
|
20
|
-
"@spark-web/combobox": "1.
|
|
20
|
+
"@spark-web/combobox": "1.5.0",
|
|
21
21
|
"@spark-web/container": "1.0.10",
|
|
22
22
|
"@spark-web/control-label": "1.0.10",
|
|
23
|
-
"@spark-web/core": "2.
|
|
23
|
+
"@spark-web/core": "2.2.0",
|
|
24
24
|
"@spark-web/currency-input": "2.0.5",
|
|
25
|
+
"@spark-web/date-picker": "0.1.0",
|
|
25
26
|
"@spark-web/divider": "1.0.10",
|
|
26
27
|
"@spark-web/dropzone": "2.0.8",
|
|
27
28
|
"@spark-web/field": "3.0.6",
|