piral-blazor 0.15.11-beta.5506 → 0.15.12-beta.5528
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/esm/types.d.ts +2 -2
- package/lib/types.d.ts +2 -2
- package/package.json +3 -3
package/esm/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ForeignComponent, PiletMetadata } from 'piral-core';
|
|
2
|
-
export
|
|
2
|
+
export type BlazorRootConfig = [
|
|
3
3
|
root: HTMLDivElement,
|
|
4
4
|
capabilities: Array<string>,
|
|
5
5
|
applyChanges: (pilet: PiletMetadata) => void
|
|
@@ -7,7 +7,7 @@ export declare type BlazorRootConfig = [
|
|
|
7
7
|
export interface BlazorDependencyLoader {
|
|
8
8
|
(config: BlazorRootConfig): Promise<void>;
|
|
9
9
|
}
|
|
10
|
-
export
|
|
10
|
+
export type WebAssemblyBootResourceType = 'assembly' | 'pdb' | 'dotnetjs' | 'dotnetwasm' | 'globalization' | 'manifest';
|
|
11
11
|
export interface WebAssemblyStartOptions {
|
|
12
12
|
/**
|
|
13
13
|
* Overrides the built-in boot resource loading mechanism so that boot resources can be fetched
|
package/lib/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ForeignComponent, PiletMetadata } from 'piral-core';
|
|
2
|
-
export
|
|
2
|
+
export type BlazorRootConfig = [
|
|
3
3
|
root: HTMLDivElement,
|
|
4
4
|
capabilities: Array<string>,
|
|
5
5
|
applyChanges: (pilet: PiletMetadata) => void
|
|
@@ -7,7 +7,7 @@ export declare type BlazorRootConfig = [
|
|
|
7
7
|
export interface BlazorDependencyLoader {
|
|
8
8
|
(config: BlazorRootConfig): Promise<void>;
|
|
9
9
|
}
|
|
10
|
-
export
|
|
10
|
+
export type WebAssemblyBootResourceType = 'assembly' | 'pdb' | 'dotnetjs' | 'dotnetwasm' | 'globalization' | 'manifest';
|
|
11
11
|
export interface WebAssemblyStartOptions {
|
|
12
12
|
/**
|
|
13
13
|
* Overrides the built-in boot resource loading mechanism so that boot resources can be fetched
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-blazor",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.12-beta.5528",
|
|
4
4
|
"description": "Plugin for integrating Blazor components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"piral-core": "0.15.
|
|
70
|
+
"piral-core": "0.15.12-beta.5528"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"blazor": "*"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "6d97a2baca7ae3e5fb19a754ba55d44b40ed137e"
|
|
76
76
|
}
|