sample-cross-fx 0.15.0-beta.4670 → 0.15.0-beta.4672
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.972786.js → index.b0ccff.js} +152 -103
- package/app/{index.972786.js.map → index.b0ccff.js.map} +1 -1
- package/app/index.d.ts +2 -2
- 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 +1 -1
package/app/index.d.ts
CHANGED
|
@@ -1169,7 +1169,7 @@ export interface NavigationListener {
|
|
|
1169
1169
|
}
|
|
1170
1170
|
|
|
1171
1171
|
export interface NavigationTransition extends NavigationUpdate {
|
|
1172
|
-
retry(): void;
|
|
1172
|
+
retry?(): void;
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
1175
1175
|
export interface NavigationUpdate {
|
|
@@ -1213,5 +1213,5 @@ export interface NavigationLocation {
|
|
|
1213
1213
|
* On the initial location, this will be the string default. On all subsequent
|
|
1214
1214
|
* locations, this string will be a unique identifier.
|
|
1215
1215
|
*/
|
|
1216
|
-
key
|
|
1216
|
+
key?: string;
|
|
1217
1217
|
}
|
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.b0ccff.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.b0ccff.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.15.0-beta.
|
|
4
|
+
"version": "0.15.0-beta.4672",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://piral.io",
|
|
7
7
|
"keywords": [
|