sample-cross-fx 0.14.11-beta.3674 → 0.14.11
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/app/{index.05acc7.js → index.7e71cd.js} +25 -10
- package/app/{index.05acc7.js.map → index.7e71cd.js.map} +1 -1
- package/app/index.d.ts +16 -0
- package/app/index.html +1 -1
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
package/app/index.d.ts
CHANGED
|
@@ -1726,6 +1726,10 @@ declare module "sample-cross-fx" {
|
|
|
1726
1726
|
* The provided error details.
|
|
1727
1727
|
*/
|
|
1728
1728
|
error: any;
|
|
1729
|
+
/**
|
|
1730
|
+
* The name of the pilet emitting the error.
|
|
1731
|
+
*/
|
|
1732
|
+
pilet?: string;
|
|
1729
1733
|
}
|
|
1730
1734
|
|
|
1731
1735
|
/**
|
|
@@ -1754,6 +1758,10 @@ declare module "sample-cross-fx" {
|
|
|
1754
1758
|
* The provided error details.
|
|
1755
1759
|
*/
|
|
1756
1760
|
error: any;
|
|
1761
|
+
/**
|
|
1762
|
+
* The name of the pilet emitting the error.
|
|
1763
|
+
*/
|
|
1764
|
+
pilet?: string;
|
|
1757
1765
|
}
|
|
1758
1766
|
|
|
1759
1767
|
/**
|
|
@@ -1778,6 +1786,10 @@ declare module "sample-cross-fx" {
|
|
|
1778
1786
|
* The provided error details.
|
|
1779
1787
|
*/
|
|
1780
1788
|
error: any;
|
|
1789
|
+
/**
|
|
1790
|
+
* The name of the pilet emitting the error.
|
|
1791
|
+
*/
|
|
1792
|
+
pilet?: string;
|
|
1781
1793
|
}
|
|
1782
1794
|
|
|
1783
1795
|
export interface DashboardContainerProps extends ReactRouter.RouteComponentProps {}
|
|
@@ -1899,6 +1911,10 @@ declare module "sample-cross-fx" {
|
|
|
1899
1911
|
* The currently used number of rows.
|
|
1900
1912
|
*/
|
|
1901
1913
|
rows: number;
|
|
1914
|
+
/**
|
|
1915
|
+
* The name of the pilet emitting the error.
|
|
1916
|
+
*/
|
|
1917
|
+
pilet?: string;
|
|
1902
1918
|
}
|
|
1903
1919
|
|
|
1904
1920
|
/**
|
package/app/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<title>Sample - Cross Framework with Piral</title>
|
|
6
6
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
7
7
|
|
|
8
|
-
<script defer src="/index.
|
|
8
|
+
<script defer src="/index.7e71cd.js"></script></head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="app"></div>
|
|
11
11
|
|
package/app/index.js
CHANGED
|
@@ -2,7 +2,7 @@ if (process.env.NODE_ENV === 'test') {
|
|
|
2
2
|
// behavior for the test environment, we'll try to make it work
|
|
3
3
|
|
|
4
4
|
if (typeof window !== 'undefined') {
|
|
5
|
-
require('.//index.
|
|
5
|
+
require('.//index.7e71cd.js');
|
|
6
6
|
const ctx = window['dbg:piral'];
|
|
7
7
|
const dependencies = (ctx && ctx.pilets && ctx.pilets.getDependencies({})) || {};
|
|
8
8
|
module.exports = dependencies['sample-cross-fx'] || {};
|
package/files.tar
CHANGED
|
Binary file
|
package/files_once.tar
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sample-cross-fx",
|
|
3
3
|
"description": "Example project illustrating the mixing of different (opt-in) frameworks via plugins.",
|
|
4
|
-
"version": "0.14.11
|
|
4
|
+
"version": "0.14.11",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://piral.io",
|
|
7
7
|
"keywords": [
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"piralCLI": {
|
|
47
|
-
"version": "0.14.
|
|
47
|
+
"version": "0.14.11",
|
|
48
48
|
"generated": true
|
|
49
49
|
},
|
|
50
50
|
"main": "./app/index.js",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"@types/react-router": "^5.1.8",
|
|
59
59
|
"@types/react-router-dom": "^5.1.6",
|
|
60
60
|
"@vue/component-compiler-utils": "^3.0.0",
|
|
61
|
-
"piral-cli": "^0.14.
|
|
62
|
-
"piral-cli-webpack5": "^0.14.
|
|
61
|
+
"piral-cli": "^0.14.11",
|
|
62
|
+
"piral-cli-webpack5": "^0.14.11",
|
|
63
63
|
"sass": "^1.17.0",
|
|
64
64
|
"vue-template-compiler": "^2.6.10",
|
|
65
65
|
"@angular/common": "8.2.14",
|
|
@@ -82,22 +82,22 @@
|
|
|
82
82
|
"inferno-create-element": "7.4.9",
|
|
83
83
|
"lit-element": "2.5.1",
|
|
84
84
|
"mithril": "2.0.4",
|
|
85
|
-
"piral-aurelia": "^0.14.
|
|
86
|
-
"piral-blazor": "^0.14.
|
|
87
|
-
"piral-core": "^0.14.
|
|
88
|
-
"piral-elm": "^0.14.
|
|
89
|
-
"piral-hyperapp": "^0.14.
|
|
90
|
-
"piral-inferno": "^0.14.
|
|
91
|
-
"piral-lazy": "^0.14.
|
|
92
|
-
"piral-litel": "^0.14.
|
|
93
|
-
"piral-mithril": "^0.14.
|
|
94
|
-
"piral-ng": "^0.14.
|
|
95
|
-
"piral-ngjs": "^0.14.
|
|
96
|
-
"piral-preact": "^0.14.
|
|
97
|
-
"piral-riot": "^0.14.
|
|
98
|
-
"piral-solid": "^0.14.
|
|
99
|
-
"piral-svelte": "^0.14.
|
|
100
|
-
"piral-vue": "^0.14.
|
|
85
|
+
"piral-aurelia": "^0.14.11",
|
|
86
|
+
"piral-blazor": "^0.14.11",
|
|
87
|
+
"piral-core": "^0.14.11",
|
|
88
|
+
"piral-elm": "^0.14.11",
|
|
89
|
+
"piral-hyperapp": "^0.14.11",
|
|
90
|
+
"piral-inferno": "^0.14.11",
|
|
91
|
+
"piral-lazy": "^0.14.11",
|
|
92
|
+
"piral-litel": "^0.14.11",
|
|
93
|
+
"piral-mithril": "^0.14.11",
|
|
94
|
+
"piral-ng": "^0.14.11",
|
|
95
|
+
"piral-ngjs": "^0.14.11",
|
|
96
|
+
"piral-preact": "^0.14.11",
|
|
97
|
+
"piral-riot": "^0.14.11",
|
|
98
|
+
"piral-solid": "^0.14.11",
|
|
99
|
+
"piral-svelte": "^0.14.11",
|
|
100
|
+
"piral-vue": "^0.14.11",
|
|
101
101
|
"preact": "10.5.14",
|
|
102
102
|
"react": "17.0.2",
|
|
103
103
|
"react-dom": "17.0.2",
|