piral-page-layouts 0.15.0-alpha.3662 → 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
@@ -51,6 +51,10 @@ export interface PageLayoutErrorInfoProps extends RouteComponentProps {
51
51
  * The available page meta data.
52
52
  */
53
53
  meta: PiralPageMeta;
54
+ /**
55
+ * The name of the pilet emitting the error.
56
+ */
57
+ pilet?: string;
54
58
  }
55
59
  export interface PiletPageLayoutsApi {
56
60
  /**
package/lib/types.d.ts CHANGED
@@ -51,6 +51,10 @@ export interface PageLayoutErrorInfoProps extends RouteComponentProps {
51
51
  * The available page meta data.
52
52
  */
53
53
  meta: PiralPageMeta;
54
+ /**
55
+ * The name of the pilet emitting the error.
56
+ */
57
+ pilet?: string;
54
58
  }
55
59
  export interface PiletPageLayoutsApi {
56
60
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-page-layouts",
3
- "version": "0.15.0-alpha.3662",
3
+ "version": "0.15.0-alpha.3711",
4
4
  "description": "Plugin for providing different page layouts 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-page-layouts.min.js",
38
39
  "build": "yarn build:bundle && yarn build:commonjs && yarn build:esnext",
39
40
  "build:bundle": "esbuild src/index.ts --outfile=piral-page-layouts.min.js --bundle --external:piral-core --external:react --minify --global-name=piralPageLayouts",
40
41
  "build:commonjs": "tsc --project tsconfig.json --outDir lib --module commonjs",
@@ -43,12 +44,12 @@
43
44
  "test": "echo \"Error: run tests from root\" && exit 1"
44
45
  },
45
46
  "devDependencies": {
46
- "piral-core": "0.15.0-alpha.3662"
47
+ "piral-core": "0.15.0-alpha.3711"
47
48
  },
48
49
  "peerDependencies": {
49
50
  "piral-core": "0.14.x",
50
51
  "react": ">=16.8.0",
51
52
  "react-router": "5.x"
52
53
  },
53
- "gitHead": "b7ec6c01e99557f270b2558a7cb23bec8e6ce0da"
54
+ "gitHead": "2ef676e46e2fb402edeceeb3b4f1a1aa04c99970"
54
55
  }
package/src/types.ts CHANGED
@@ -65,6 +65,10 @@ export interface PageLayoutErrorInfoProps extends RouteComponentProps {
65
65
  * The available page meta data.
66
66
  */
67
67
  meta: PiralPageMeta;
68
+ /**
69
+ * The name of the pilet emitting the error.
70
+ */
71
+ pilet?: string;
68
72
  }
69
73
 
70
74
  export interface PiletPageLayoutsApi {