piral-dashboard 0.15.0-alpha.3589 → 0.15.0-alpha.3711

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/esm/types.d.ts CHANGED
@@ -86,6 +86,10 @@ export interface TileErrorInfoProps {
86
86
  * The currently used number of rows.
87
87
  */
88
88
  rows: number;
89
+ /**
90
+ * The name of the pilet emitting the error.
91
+ */
92
+ pilet?: string;
89
93
  }
90
94
  export interface BareTileComponentProps {
91
95
  /**
package/lib/types.d.ts CHANGED
@@ -86,6 +86,10 @@ export interface TileErrorInfoProps {
86
86
  * The currently used number of rows.
87
87
  */
88
88
  rows: number;
89
+ /**
90
+ * The name of the pilet emitting the error.
91
+ */
92
+ pilet?: string;
89
93
  }
90
94
  export interface BareTileComponentProps {
91
95
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-dashboard",
3
- "version": "0.15.0-alpha.3589",
3
+ "version": "0.15.0-alpha.3711",
4
4
  "description": "Plugin for creating a centralized dashboard in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -35,6 +35,7 @@
35
35
  "url": "https://github.com/smapiot/piral/issues"
36
36
  },
37
37
  "scripts": {
38
+ "cleanup": "rimraf esm lib piral-dashboard.min.js",
38
39
  "build": "yarn build:bundle && yarn build:commonjs && yarn build:esnext",
39
40
  "build:bundle": "esbuild src/index.ts --outfile=piral-dashboard.min.js --bundle --external:piral-core --external:react --minify --global-name=piralDashboard",
40
41
  "build:commonjs": "tsc --project tsconfig.json --outDir lib --module commonjs",
@@ -45,12 +46,12 @@
45
46
  "devDependencies": {
46
47
  "@types/react": "^17.0.0",
47
48
  "@types/react-router-dom": "^5.1.6",
48
- "piral-core": "0.15.0-alpha.3589",
49
+ "piral-core": "0.15.0-alpha.3711",
49
50
  "react": "^17.0.1"
50
51
  },
51
52
  "peerDependencies": {
52
53
  "piral-core": "0.14.x",
53
54
  "react": ">=16.8.0"
54
55
  },
55
- "gitHead": "3de80e7857d8f95c5f7c6944dfad56d4a5e21f8d"
56
+ "gitHead": "2ef676e46e2fb402edeceeb3b4f1a1aa04c99970"
56
57
  }
package/src/types.ts CHANGED
@@ -100,6 +100,10 @@ export interface TileErrorInfoProps {
100
100
  * The currently used number of rows.
101
101
  */
102
102
  rows: number;
103
+ /**
104
+ * The name of the pilet emitting the error.
105
+ */
106
+ pilet?: string;
103
107
  }
104
108
 
105
109
  export interface BareTileComponentProps {