@datarailsshared/dr_renderer 1.5.107 → 1.5.114

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.5.107",
3
+ "version": "1.5.114",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -40,7 +40,18 @@
40
40
  "whitelistedNonPeerDependencies": [],
41
41
  "main": "src/index.js",
42
42
  "module": "src/index.js",
43
- "sideEffects": false,
43
+ "exports": {
44
+ ".": {
45
+ "types": "./src/index.d.ts",
46
+ "import": "./src/index.js",
47
+ "require": "./src/index.js"
48
+ },
49
+ "./src/pivot.css": "./src/pivot.css",
50
+ "./pivot.css": "./src/pivot.css"
51
+ },
52
+ "sideEffects": [
53
+ "*.css"
54
+ ],
44
55
  "jest": {
45
56
  "setupFiles": [
46
57
  "./setup-jest.js"
@@ -84,7 +84,7 @@ export class GraphTableRenderer {
84
84
  * Creates Pivot Data Model that works we BE data response to aggregate data to render with Chart and Table
85
85
  * @param {Rows} rows BE data response
86
86
  * @param {GTROptions} options
87
- * @returns {this}
87
+ * @returns {GraphTableRenderer}
88
88
  */
89
89
  createPivotModel(rows, options) {
90
90
  this.#options = options;