@nebula.js/sn-table 1.3.1 → 1.3.2
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.
- package/api-specifications/properties.json +1 -1
- package/core/esm/index.js +86 -5
- package/dist/sn-table.js +111 -4
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nebula.js/sn-table",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "table supernova",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "QlikTech International AB",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"core"
|
|
23
23
|
],
|
|
24
24
|
"engines": {
|
|
25
|
-
"node": ">=
|
|
25
|
+
"node": ">=16"
|
|
26
26
|
},
|
|
27
27
|
"main": "dist/sn-table.js",
|
|
28
28
|
"scripts": {
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"spec": "scriptappy-from-jsdoc -c ./spec-configs/props.conf.js",
|
|
38
38
|
"test:unit": "aw -c aw.config.js",
|
|
39
39
|
"test:integration": "aw puppet --testExt '*.int.js' --glob 'test/integration/**/*.int.js'",
|
|
40
|
+
"test:rendering": "aw puppet --testExt '*.spec.js' --glob 'test/rendering/**/*.spec.js' --mocha.bail false --mocha.timeout 30000",
|
|
40
41
|
"prepublishOnly": "NODE_ENV=production yarn run build && yarn spec",
|
|
41
42
|
"prepack": "./tools/prepare-sn-pack.js",
|
|
42
43
|
"prepare": "husky install"
|
|
@@ -55,10 +56,10 @@
|
|
|
55
56
|
"@mui/icons-material": "^5.2.0",
|
|
56
57
|
"@mui/material": "^5.2.1",
|
|
57
58
|
"@mui/styles": "^5.2.1",
|
|
58
|
-
"@nebula.js/cli": "2.
|
|
59
|
-
"@nebula.js/cli-build": "2.
|
|
60
|
-
"@nebula.js/cli-sense": "2.
|
|
61
|
-
"@nebula.js/cli-serve": "2.
|
|
59
|
+
"@nebula.js/cli": "2.3.0",
|
|
60
|
+
"@nebula.js/cli-build": "2.3.0",
|
|
61
|
+
"@nebula.js/cli-sense": "2.3.0",
|
|
62
|
+
"@nebula.js/cli-serve": "2.3.0",
|
|
62
63
|
"@testing-library/react": "12.1.2",
|
|
63
64
|
"@testing-library/react-hooks": "7.0.2",
|
|
64
65
|
"babel-plugin-istanbul": "^6.1.1",
|