sample-piral 0.15.0-beta.4607 → 0.15.0-beta.4630
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.d205bf.js → index.06e993.js} +91 -12
- package/app/index.06e993.js.map +1 -0
- package/app/index.d.ts +4 -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 +8 -8
- package/app/index.d205bf.js.map +0 -1
package/app/index.d.ts
CHANGED
|
@@ -915,6 +915,10 @@ declare module "sample-piral" {
|
|
|
915
915
|
* @returns The disposable for stopping the block.
|
|
916
916
|
*/
|
|
917
917
|
listen(listener: NavigationListener): Disposable;
|
|
918
|
+
/**
|
|
919
|
+
* The original router behind the navigation.
|
|
920
|
+
*/
|
|
921
|
+
router: any;
|
|
918
922
|
}
|
|
919
923
|
|
|
920
924
|
export type Without<T, K> = Pick<T, Exclude<keyof T, K>>;
|
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.06e993.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.06e993.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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sample-piral",
|
|
3
3
|
"description": "Example project illustrating the use of the piral and piral-cli packages.",
|
|
4
|
-
"version": "0.15.0-beta.
|
|
4
|
+
"version": "0.15.0-beta.4630",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://piral.io",
|
|
7
7
|
"keywords": [
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"files": []
|
|
31
31
|
},
|
|
32
32
|
"piralCLI": {
|
|
33
|
-
"version": "0.14.
|
|
33
|
+
"version": "0.14.30",
|
|
34
34
|
"generated": true
|
|
35
35
|
},
|
|
36
36
|
"main": "./app/index.js",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"@types/react-dom": "^18.0.0",
|
|
43
43
|
"@types/react-router": "^5.1.8",
|
|
44
44
|
"@types/react-router-dom": "^5.1.6",
|
|
45
|
-
"piral-cli": "^0.14.
|
|
46
|
-
"piral-cli-webpack5": "^0.14.
|
|
45
|
+
"piral-cli": "^0.14.30",
|
|
46
|
+
"piral-cli-webpack5": "^0.14.30",
|
|
47
47
|
"sass": "^1.17.0",
|
|
48
48
|
"bootstrap": "^4.3.1",
|
|
49
|
-
"piral": "^0.14.
|
|
50
|
-
"piral-auth": "^0.14.
|
|
51
|
-
"piral-hooks-utils": "^0.14.
|
|
52
|
-
"piral-search": "^0.14.
|
|
49
|
+
"piral": "^0.14.30",
|
|
50
|
+
"piral-auth": "^0.14.30",
|
|
51
|
+
"piral-hooks-utils": "^0.14.30",
|
|
52
|
+
"piral-search": "^0.14.30",
|
|
53
53
|
"reactstrap": "^8.0.1",
|
|
54
54
|
"react": "18.2.0",
|
|
55
55
|
"react-dom": "18.2.0",
|