@nebula.js/sn-table 2.9.1 → 3.1.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.
- package/README.md +6 -11
- package/api-specifications/properties.json +1 -1
- package/core/esm/index.js +107 -19
- package/dist/sn-table.js +134 -46
- package/dist/sn-table.systemjs.js +117 -29
- package/package.json +71 -8
- package/sn-table-ext/dist/sn-table.js +134 -46
- package/sn-table-ext/sn-table.qext +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
[](https://circleci.com/gh/qlik-oss/sn-table)
|
|
2
|
-
[](https://codeclimate.com/github/qlik-oss/sn-table/maintainability)
|
|
3
|
-
[](https://codeclimate.com/github/qlik-oss/sn-table/test_coverage)
|
|
4
|
-
|
|
5
1
|
# sn-table
|
|
6
2
|
|
|
7
3
|
Table supernova for [nebula.js]
|
|
@@ -56,20 +52,20 @@ Check full [examples](./mashup-example) of mashup usage for sn-table.
|
|
|
56
52
|
|
|
57
53
|
### Building and adding the sn-table extension to Qlik Sense
|
|
58
54
|
|
|
59
|
-
NOTE: at this point sn-table uses a package that require internal Qlik access. This means that external users cannot run `
|
|
55
|
+
NOTE: at this point sn-table uses a package that require internal Qlik access. This means that external users cannot run `pnpm install` to install.
|
|
60
56
|
The package in question will soon be public and thus enable all users to install and build.
|
|
61
57
|
Until then, external users can revert to using version 1.21.0, which is the last version that works for everyone.
|
|
62
58
|
|
|
63
59
|
Install all dependencies:
|
|
64
60
|
|
|
65
61
|
```sh
|
|
66
|
-
|
|
62
|
+
pnpm install
|
|
67
63
|
```
|
|
68
64
|
|
|
69
65
|
Build a nebula.js visualization as a Qlik Sense extension:
|
|
70
66
|
|
|
71
67
|
```sh
|
|
72
|
-
|
|
68
|
+
pnpm build
|
|
73
69
|
```
|
|
74
70
|
|
|
75
71
|
Compress the generated 'sn-table-ext' folder into the 'application/zip' file format
|
|
@@ -84,16 +80,15 @@ The API can also be found in [the Qlik developer portal](https://qlik.dev/apis/j
|
|
|
84
80
|
|
|
85
81
|
## Package
|
|
86
82
|
|
|
87
|
-
| name
|
|
88
|
-
|
|
|
89
|
-
|
|
|
83
|
+
| name | status | description |
|
|
84
|
+
| -------- | ---------------------------------- | ----------------------------- |
|
|
85
|
+
| sn-table | [![sn-table-status]][sn-table-npm] | table supernova for nebula.js |
|
|
90
86
|
|
|
91
87
|
## License
|
|
92
88
|
|
|
93
89
|
`@nebula.js/sn-table` is [MIT licensed](./LICENSE).
|
|
94
90
|
|
|
95
91
|
[nebula.js]: https://qlik.dev/libraries-and-tools/nebulajs
|
|
96
|
-
[sn-table]: https://github.com/qlik-oss/sn-table
|
|
97
92
|
[sn-table-status]: https://img.shields.io/npm/v/@nebula.js/sn-table.svg
|
|
98
93
|
[sn-table-npm]: https://www.npmjs.com/package/@nebula.js/sn-table
|
|
99
94
|
[saas edition of qlik sense]: https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Admin/mc-extensions.htm
|