@nebula.js/sn-pivot-table 2.6.0 → 3.0.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 CHANGED
@@ -55,13 +55,13 @@ Look into [Build a simple mashup using nebula.js](https://qlik.dev/tutorials/bui
55
55
  Install all dependencies:
56
56
 
57
57
  ```sh
58
- yarn
58
+ pnpm install
59
59
  ```
60
60
 
61
61
  Build a nebula.js visualization as a Qlik Sense extension:
62
62
 
63
63
  ```sh
64
- yarn build
64
+ pnpm build
65
65
  ```
66
66
 
67
67
  Compress the generated 'sn-pivot-table-ext' folder into the 'application/zip' file format
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-pivot-table:properties",
5
5
  "description": "Pivot Table generic object definition",
6
- "version": "2.6.0",
6
+ "version": "3.0.0",
7
7
  "license": "MIT",
8
8
  "stability": "experimental",
9
9
  "x-qlik-visibility": "public"
@@ -223,6 +223,10 @@
223
223
  "columnWidth": {
224
224
  "optional": true,
225
225
  "type": "#/definitions/ColumnWidth"
226
+ },
227
+ "textAlign": {
228
+ "optional": true,
229
+ "type": "#/definitions/TextAlign"
226
230
  }
227
231
  }
228
232
  },
@@ -238,6 +242,10 @@
238
242
  "columnWidth": {
239
243
  "optional": true,
240
244
  "type": "#/definitions/ColumnWidth"
245
+ },
246
+ "textAlign": {
247
+ "optional": true,
248
+ "type": "#/definitions/TextAlign"
241
249
  }
242
250
  }
243
251
  },
@@ -279,6 +287,39 @@
279
287
  }
280
288
  }
281
289
  },
290
+ "TextAlignValues": {
291
+ "description": "Text align values",
292
+ "kind": "union",
293
+ "items": [
294
+ {
295
+ "kind": "literal",
296
+ "value": "\"left\""
297
+ },
298
+ {
299
+ "kind": "literal",
300
+ "value": "\"center\""
301
+ },
302
+ {
303
+ "kind": "literal",
304
+ "value": "\"right\""
305
+ }
306
+ ]
307
+ },
308
+ "TextAlign": {
309
+ "description": "Set the alignment of text in the chart.",
310
+ "kind": "object",
311
+ "entries": {
312
+ "auto": {
313
+ "description": "If true the chart decides text alignment, otherwise the \"align\" value is used.",
314
+ "type": "boolean"
315
+ },
316
+ "align": {
317
+ "description": "Align value",
318
+ "optional": true,
319
+ "type": "#/definitions/TextAlignValues"
320
+ }
321
+ }
322
+ },
282
323
  "Component": {
283
324
  "description": "Styling defintions",
284
325
  "kind": "union",