@nebula.js/sn-table 1.7.0 → 1.9.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 +9 -13
- package/api-specifications/properties.json +1 -1
- package/core/esm/index.js +72 -24522
- package/core/package.json +1 -1
- package/dist/sn-table.js +10 -10
- package/package.json +27 -31
package/README.md
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
# sn-table
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Table supernova for [nebula.js]
|
|
8
|
+
|
|
9
|
+
More specifics and information about the sn-table can be found in [the Qlik developer portal](https://qlik.dev/libraries-and-tools/visualizations/table).
|
|
8
10
|
|
|
9
11
|
## Mashup Usage
|
|
10
12
|
|
|
@@ -32,15 +34,13 @@ nuked.render({
|
|
|
32
34
|
});
|
|
33
35
|
```
|
|
34
36
|
|
|
35
|
-
Look into [Build a simple mashup using nebula.js](https://qlik.dev/tutorials/build-a-simple-mashup-using-nebulajs) to learn more.
|
|
37
|
+
Look into [Build a simple mashup using nebula.js](https://qlik.dev/tutorials/build-a-simple-mashup-using-nebulajs) and [Embed a visualization](https://qlik.dev/libraries-and-tools/nebulajs/rendering) to learn more.
|
|
36
38
|
|
|
37
|
-
[
|
|
38
|
-
|
|
39
|
-
More specifics and information about the sn-table can be found in [the Qlik developer portal](https://qlik.dev/libraries-and-tools/visualizations/table).
|
|
39
|
+
[Check full examples](./mashup-example) of the mashup usage.
|
|
40
40
|
|
|
41
41
|
## Visualization Extension Usage
|
|
42
42
|
|
|
43
|
-
###
|
|
43
|
+
### Building and adding the sn-table extension to Qlik Sense
|
|
44
44
|
|
|
45
45
|
Install all dependencies:
|
|
46
46
|
|
|
@@ -48,17 +48,13 @@ Install all dependencies:
|
|
|
48
48
|
yarn
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
Build nebula.js visualization:
|
|
51
|
+
Build a nebula.js visualization as a Qlik Sense extension:
|
|
52
52
|
|
|
53
53
|
```sh
|
|
54
54
|
yarn build
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
```sh
|
|
60
|
-
yarn sense
|
|
61
|
-
```
|
|
57
|
+
Compress the generated 'dist' folder into the 'application/zip' file format and rename it to 'sn-table-ext'.
|
|
62
58
|
|
|
63
59
|
| [Saas Edition of Qlik Sense] | [Qlik Sense Enterprise] | [Qlik Sense Desktop] |
|
|
64
60
|
| :-----------------------------------------------------------------------------: | :--------------------------------------------------------------: | :------------------------------------------------------------------------: |
|
|
@@ -70,7 +66,7 @@ The API can also be found in [the Qlik developer portal](https://qlik.dev/apis/j
|
|
|
70
66
|
|
|
71
67
|
## Contribution
|
|
72
68
|
|
|
73
|
-
|
|
69
|
+
To learn how to run a sn-table extension using nebula development server and develop, see our [contributing guide](./.github/CONTRIBUTION.md).
|
|
74
70
|
|
|
75
71
|
## Package
|
|
76
72
|
|