sample-cross-fx 1.2.0 → 1.3.0-beta.6001
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.dd8e32.js → index.b5b1be.js} +185 -225
- package/app/{index.dd8e32.js.map → index.b5b1be.js.map} +1 -1
- package/app/index.d.ts +3 -1
- 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 +6 -6
package/app/index.d.ts
CHANGED
|
@@ -410,8 +410,10 @@ export interface PiletBlazorApi {
|
|
|
410
410
|
* @param referenceUrls The URLs pointing to the different DLLs to include.
|
|
411
411
|
* @param satellites The URLs of the potential satellite DLLs to include.
|
|
412
412
|
* @param prio The loading priority of the DLLs. Higher numbers will always be loaded before lower numbers.
|
|
413
|
+
* @param kind The kind of pilet to use. Global pilets will always be loaded before local pilets.
|
|
414
|
+
* @param sharedDependencies The names of the dependencies that should be put in the global context.
|
|
413
415
|
*/
|
|
414
|
-
defineBlazorReferences(referenceUrls: Array<string>, satellites?: Record<string, Array<string>>, prio?: number): void;
|
|
416
|
+
defineBlazorReferences(referenceUrls: Array<string>, satellites?: Record<string, Array<string>>, prio?: number, kind?: "global" | "local", sharedDependencies?: Array<string>): void;
|
|
415
417
|
/**
|
|
416
418
|
* Wraps a Blazor module for use in Piral.
|
|
417
419
|
* @param moduleName The name of the exposed Blazor component.
|
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.b5b1be.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.b5b1be.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": "1.
|
|
4
|
+
"version": "1.3.0-beta.6001",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://piral.io",
|
|
7
7
|
"keywords": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"files": []
|
|
51
51
|
},
|
|
52
52
|
"piralCLI": {
|
|
53
|
-
"version": "1.
|
|
53
|
+
"version": "1.3.0-beta.6001",
|
|
54
54
|
"generated": true
|
|
55
55
|
},
|
|
56
56
|
"main": "./app/index.js",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@types/react-router": "^5.1.8",
|
|
66
66
|
"@types/react-router-dom": "^5.1.6",
|
|
67
67
|
"@vue/component-compiler-utils": "^3.0.0",
|
|
68
|
-
"piral-cli": "^1.
|
|
69
|
-
"piral-cli-webpack5": "^1.
|
|
68
|
+
"piral-cli": "^1.3.0-beta.6001",
|
|
69
|
+
"piral-cli-webpack5": "^1.3.0-beta.6001",
|
|
70
70
|
"sass": "^1.17.0",
|
|
71
71
|
"vue-template-compiler": "^2.6.10",
|
|
72
72
|
"@angular/common": "16.0.1",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"lit-element": "2.5.1",
|
|
91
91
|
"mithril": "2.2.2",
|
|
92
92
|
"piral-aurelia": "^1.2.0",
|
|
93
|
-
"piral-blazor": "^1.
|
|
93
|
+
"piral-blazor": "^1.3.0-beta.6001",
|
|
94
94
|
"piral-core": "^1.2.0",
|
|
95
95
|
"piral-elm": "^1.2.0",
|
|
96
96
|
"piral-hyperapp": "^1.2.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"piral-lazy": "^1.2.0",
|
|
99
99
|
"piral-litel": "^1.2.0",
|
|
100
100
|
"piral-mithril": "^1.2.0",
|
|
101
|
-
"piral-ng": "^1.
|
|
101
|
+
"piral-ng": "^1.3.0-beta.6001",
|
|
102
102
|
"piral-ngjs": "^1.2.0",
|
|
103
103
|
"piral-preact": "^1.2.0",
|
|
104
104
|
"piral-riot": "^1.2.0",
|