piral-dashboard 0.14.10-beta.3661 → 0.14.11-beta.3683

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
@@ -76,6 +76,10 @@ export interface TileErrorInfoProps {
76
76
  * The currently used number of rows.
77
77
  */
78
78
  rows: number;
79
+ /**
80
+ * The name of the pilet emitting the error.
81
+ */
82
+ pilet?: string;
79
83
  }
80
84
  export interface BareTileComponentProps {
81
85
  /**
package/lib/types.d.ts CHANGED
@@ -76,6 +76,10 @@ export interface TileErrorInfoProps {
76
76
  * The currently used number of rows.
77
77
  */
78
78
  rows: number;
79
+ /**
80
+ * The name of the pilet emitting the error.
81
+ */
82
+ pilet?: string;
79
83
  }
80
84
  export interface BareTileComponentProps {
81
85
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-dashboard",
3
- "version": "0.14.10-beta.3661",
3
+ "version": "0.14.11-beta.3683",
4
4
  "description": "Plugin for creating a centralized dashboard in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -41,10 +41,10 @@
41
41
  "test": "echo \"Error: run tests from root\" && exit 1"
42
42
  },
43
43
  "devDependencies": {
44
- "piral-core": "0.14.10-beta.3661"
44
+ "piral-core": "0.14.11-beta.3683"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "piral-core": "0.14.x"
48
48
  },
49
- "gitHead": "6ba6fa4e5956746899b81046ee25ab8bb36520e6"
49
+ "gitHead": "175022bc5b565d8aa303a412bd72d75302a53223"
50
50
  }
package/src/types.ts CHANGED
@@ -89,6 +89,10 @@ export interface TileErrorInfoProps {
89
89
  * The currently used number of rows.
90
90
  */
91
91
  rows: number;
92
+ /**
93
+ * The name of the pilet emitting the error.
94
+ */
95
+ pilet?: string;
92
96
  }
93
97
 
94
98
  export interface BareTileComponentProps {