@nebula.js/sn-table 1.9.1 → 1.12.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 +10 -0
- package/api-specifications/properties.json +1 -1
- package/core/esm/index.js +12 -12
- package/dist/sn-table.js +12 -12
- package/package.json +1 -1
- package/sn-table-ext/dist/sn-table.js +12 -12
- package/sn-table-ext/sn-table.qext +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,14 @@ If you use npm:
|
|
|
16
16
|
|
|
17
17
|
`npm install @nebula.js/sn-table`
|
|
18
18
|
|
|
19
|
+
Or without build tool, You can also load the sn-table through the script tag from [unpkg](https://unpkg.com/@nebula.js/sn-table).
|
|
20
|
+
|
|
21
|
+
```html
|
|
22
|
+
<script src="https://unpkg.com/@nebula.js/sn-table"></script>
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Usage
|
|
26
|
+
|
|
19
27
|
```js
|
|
20
28
|
import { embed } from '@nebula.js/stardust';
|
|
21
29
|
import table from '@nebula.js/sn-table';
|
|
@@ -34,6 +42,8 @@ nuked.render({
|
|
|
34
42
|
});
|
|
35
43
|
```
|
|
36
44
|
|
|
45
|
+
### Tutorial & Examples
|
|
46
|
+
|
|
37
47
|
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.
|
|
38
48
|
|
|
39
49
|
[Check full examples](./mashup-example) of the mashup usage.
|