@yugabytedb/perf-advisor-ui 1.0.60 → 1.0.62

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/dist/types.d.ts CHANGED
@@ -509,6 +509,7 @@ interface ColumnOptions {
509
509
  className: string;
510
510
  };
511
511
  customBodyRender?: (value: any, tableMeta: MUIDataTableMeta) => React.ReactNode;
512
+ customHeadLabelRender?: (header: any) => React.ReactNode;
512
513
  }
513
514
  interface Column {
514
515
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yugabytedb/perf-advisor-ui",
3
- "version": "1.0.60",
3
+ "version": "1.0.62",
4
4
  "main": "dist/cjs/index.js",
5
5
  "types": "dist/types.d.ts",
6
6
  "author": "Rajagopalan Madhavan",
@@ -23,8 +23,10 @@
23
23
  "@types/mui-datatables": "3.7.4",
24
24
  "@typescript-eslint/eslint-plugin": "5.62.0",
25
25
  "@typescript-eslint/parser": "5.62.0",
26
+ "concurrently": "9.2.1",
26
27
  "eslint-config-prettier": "8.3.0",
27
28
  "eslint-plugin-import": "2.23.4",
29
+ "nodemon": "3.1.10",
28
30
  "rollup": "2.79.1",
29
31
  "rollup-plugin-dts": "4.2.3",
30
32
  "rollup-plugin-peer-deps-external": "2.2.4",
@@ -84,7 +86,9 @@
84
86
  "build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
85
87
  "build:dev": "NODE_ENV=development rollup -c --bundleConfigAsCjs",
86
88
  "changelog": "standard-version",
87
- "release": "npm install && npm run build && npm publish"
89
+ "release": "npm install && npm run build && npm publish",
90
+ "dev": "concurrently \"rollup -c -w\" \"nodemon --watch dist --exec 'npx yalc push'\" --names \"BUILD,YALC\" --prefix-colors \"blue,green\"",
91
+ "publish:yalc": "npm run build:dev && npx yalc publish --push"
88
92
  },
89
93
  "sideEffects": false,
90
94
  "eslintConfig": {