@datarailsshared/dr_renderer 1.4.65 → 1.4.78
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 +38 -0
- package/package.json +1 -1
- package/src/dr_pivottable.js +14 -25
- package/src/errors.js +174 -0
- package/src/highcharts_renderer.js +80 -108
- package/src/index.d.ts +11 -0
- package/src/index.js +11 -0
- package/src/pivot.css +0 -11
- package/src/pivottable.js +14 -57
- package/src/types/errors.d.ts +120 -0
- package/src/types/index.d.ts +2 -1
- package/tests/errors.test.js +157 -0
- package/tests/highcharts_renderer.test.js +861 -61
- package/tests/mock/widgets.json +1 -3
- package/tsconfig.json +1 -1
- package/tsconfig.tsbuildinfo +2 -1
package/tests/mock/widgets.json
CHANGED
@@ -314,7 +314,6 @@
|
|
314
314
|
},
|
315
315
|
"seriesOptions": []
|
316
316
|
},
|
317
|
-
"error_params": null,
|
318
317
|
"chart_title": "New Widget234",
|
319
318
|
"chartLabels": {
|
320
319
|
"legend": "Data series",
|
@@ -371,8 +370,7 @@
|
|
371
370
|
"is_end_of_period": true,
|
372
371
|
"is_formatting_by_aggregation_method": true
|
373
372
|
}
|
374
|
-
]
|
375
|
-
"error_has_occurred": false
|
373
|
+
]
|
376
374
|
},
|
377
375
|
"vals": [
|
378
376
|
{
|
package/tsconfig.json
CHANGED