sample-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.e44fc2.js → index.3057c8.js} +143 -102
- package/app/index.3057c8.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.e44fc2.js.map +0 -1
package/app/index.d.ts
CHANGED
|
@@ -935,7 +935,7 @@ export interface NavigationListener {
|
|
|
935
935
|
}
|
|
936
936
|
|
|
937
937
|
export interface NavigationTransition extends NavigationUpdate {
|
|
938
|
-
retry(): void;
|
|
938
|
+
retry?(): void;
|
|
939
939
|
}
|
|
940
940
|
|
|
941
941
|
export interface NavigationUpdate {
|
|
@@ -979,5 +979,5 @@ export interface NavigationLocation {
|
|
|
979
979
|
* On the initial location, this will be the string default. On all subsequent
|
|
980
980
|
* locations, this string will be a unique identifier.
|
|
981
981
|
*/
|
|
982
|
-
key
|
|
982
|
+
key?: string;
|
|
983
983
|
}
|
package/app/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<title>Piral Sample</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.3057c8.js"></script></head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="app">
|
|
11
11
|
<div class="pi-center">
|
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.3057c8.js');
|
|
6
6
|
const ctx = window['dbg:piral'];
|
|
7
7
|
const dependencies = (ctx && ctx.pilets && ctx.pilets.getDependencies({})) || {};
|
|
8
8
|
module.exports = dependencies['sample-piral'] || {};
|
package/files.tar
CHANGED
|
Binary file
|
package/files_once.tar
CHANGED
|
Binary file
|
package/package.json
CHANGED