@spark-web/design-system 0.2.11 → 0.3.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.
|
@@ -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/data-table';
|
|
15
16
|
export * from '@spark-web/date-picker';
|
|
16
17
|
export * from '@spark-web/divider';
|
|
17
18
|
export * from '@spark-web/dropzone';
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export * from "./declarations/src/index";
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Bhcmstd2ViLWRlc2lnbi1zeXN0ZW0uY2pzLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuL2RlY2xhcmF0aW9ucy9zcmMvaW5kZXguZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSJ9
|
|
@@ -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 dataTable = require('@spark-web/data-table');
|
|
19
20
|
var datePicker = require('@spark-web/date-picker');
|
|
20
21
|
var divider = require('@spark-web/divider');
|
|
21
22
|
var dropzone = require('@spark-web/dropzone');
|
|
@@ -132,6 +133,12 @@ Object.keys(currencyInput).forEach(function (k) {
|
|
|
132
133
|
get: function () { return currencyInput[k]; }
|
|
133
134
|
});
|
|
134
135
|
});
|
|
136
|
+
Object.keys(dataTable).forEach(function (k) {
|
|
137
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
138
|
+
enumerable: true,
|
|
139
|
+
get: function () { return dataTable[k]; }
|
|
140
|
+
});
|
|
141
|
+
});
|
|
135
142
|
Object.keys(datePicker).forEach(function (k) {
|
|
136
143
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
137
144
|
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 dataTable = require('@spark-web/data-table');
|
|
19
20
|
var datePicker = require('@spark-web/date-picker');
|
|
20
21
|
var divider = require('@spark-web/divider');
|
|
21
22
|
var dropzone = require('@spark-web/dropzone');
|
|
@@ -132,6 +133,12 @@ Object.keys(currencyInput).forEach(function (k) {
|
|
|
132
133
|
get: function () { return currencyInput[k]; }
|
|
133
134
|
});
|
|
134
135
|
});
|
|
136
|
+
Object.keys(dataTable).forEach(function (k) {
|
|
137
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
138
|
+
enumerable: true,
|
|
139
|
+
get: function () { return dataTable[k]; }
|
|
140
|
+
});
|
|
141
|
+
});
|
|
135
142
|
Object.keys(datePicker).forEach(function (k) {
|
|
136
143
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
137
144
|
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/data-table';
|
|
15
16
|
export * from '@spark-web/date-picker';
|
|
16
17
|
export * from '@spark-web/divider';
|
|
17
18
|
export * from '@spark-web/dropzone';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/spark-web-design-system.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-design-system.esm.js",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@spark-web/a11y": "1.4.0",
|
|
12
12
|
"@spark-web/accordion": "1.2.0",
|
|
13
|
-
"@spark-web/alert": "2.3.
|
|
13
|
+
"@spark-web/alert": "2.3.1",
|
|
14
14
|
"@spark-web/analytics": "1.1.0",
|
|
15
15
|
"@spark-web/badge": "^0.1.0",
|
|
16
16
|
"@spark-web/box": "1.2.0",
|
|
17
|
-
"@spark-web/button": "1.5.
|
|
17
|
+
"@spark-web/button": "1.5.1",
|
|
18
18
|
"@spark-web/checkbox": "1.1.0",
|
|
19
19
|
"@spark-web/columns": "2.1.0",
|
|
20
20
|
"@spark-web/combobox": "2.0.0",
|
|
@@ -22,9 +22,10 @@
|
|
|
22
22
|
"@spark-web/control-label": "1.1.0",
|
|
23
23
|
"@spark-web/core": "2.3.0",
|
|
24
24
|
"@spark-web/currency-input": "3.0.0",
|
|
25
|
+
"@spark-web/data-table": "0.1.0",
|
|
25
26
|
"@spark-web/date-picker": "0.2.0",
|
|
26
27
|
"@spark-web/divider": "1.1.0",
|
|
27
|
-
"@spark-web/dropzone": "3.0.
|
|
28
|
+
"@spark-web/dropzone": "3.0.1",
|
|
28
29
|
"@spark-web/field": "3.1.0",
|
|
29
30
|
"@spark-web/fieldset": "1.2.0",
|
|
30
31
|
"@spark-web/float-input": "2.0.0",
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
"@spark-web/text-input": "3.0.0",
|
|
50
51
|
"@spark-web/text-link": "1.1.0",
|
|
51
52
|
"@spark-web/text-list": "2.1.0",
|
|
52
|
-
"@spark-web/theme": "3.2.
|
|
53
|
+
"@spark-web/theme": "3.2.1",
|
|
53
54
|
"@spark-web/utils": "1.3.0",
|
|
54
55
|
"@spark-web/vertical-stepper": "2.2.1"
|
|
55
56
|
},
|