minimal-piral 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.8da693.js → index.952a8a.js} +143 -102
- package/app/index.952a8a.js.map +1 -0
- 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.8da693.js.map +0 -1
package/app/index.d.ts
CHANGED
|
@@ -525,7 +525,7 @@ export interface NavigationListener {
|
|
|
525
525
|
}
|
|
526
526
|
|
|
527
527
|
export interface NavigationTransition extends NavigationUpdate {
|
|
528
|
-
retry(): void;
|
|
528
|
+
retry?(): void;
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
export interface NavigationUpdate {
|
|
@@ -569,5 +569,5 @@ export interface NavigationLocation {
|
|
|
569
569
|
* On the initial location, this will be the string default. On all subsequent
|
|
570
570
|
* locations, this string will be a unique identifier.
|
|
571
571
|
*/
|
|
572
|
-
key
|
|
572
|
+
key?: string;
|
|
573
573
|
}
|
package/app/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
4
4
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
5
5
|
<title>Minimal Piral Sample</title>
|
|
6
|
-
<script defer src="/index.
|
|
6
|
+
<script defer src="/index.952a8a.js"></script></head>
|
|
7
7
|
<body>
|
|
8
8
|
<div id="app"></div>
|
|
9
9
|
|
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.952a8a.js');
|
|
6
6
|
const ctx = window['dbg:piral'];
|
|
7
7
|
const dependencies = (ctx && ctx.pilets && ctx.pilets.getDependencies({})) || {};
|
|
8
8
|
module.exports = dependencies['minimal-piral'] || {};
|
package/files.tar
CHANGED
|
Binary file
|
package/files_once.tar
CHANGED
|
Binary file
|
package/package.json
CHANGED