@plurid/plurid-data 0.0.0-13 → 0.0.0-14
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.
|
@@ -26,6 +26,11 @@ export interface PluridApplication<C> {
|
|
|
26
26
|
* Routes of the planes in view on the initial rendering.
|
|
27
27
|
*/
|
|
28
28
|
view: PluridApplicationView;
|
|
29
|
+
/**
|
|
30
|
+
* The hostname of the server exposed to the internet, e.g. `example.com`,
|
|
31
|
+
* to be used in plurid plane links.
|
|
32
|
+
*/
|
|
33
|
+
hostname?: string;
|
|
29
34
|
/**
|
|
30
35
|
* Show or not the default Plane Not Found component, or pass a custom component.
|
|
31
36
|
*
|
|
@@ -27,11 +27,9 @@ export interface PluridRouterProperties<C> {
|
|
|
27
27
|
*/
|
|
28
28
|
protocol?: string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
* Production default: `window.location.host`.
|
|
30
|
+
* Default: `'origin'` | `window.location.host`.
|
|
33
31
|
*/
|
|
34
|
-
|
|
32
|
+
hostname?: string;
|
|
35
33
|
/**
|
|
36
34
|
* The `gatewayPath` is used to receive external routing requests.
|
|
37
35
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-data",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-14",
|
|
4
4
|
"description": "Plurid Constants, Interfaces, Enumerations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@plurid/plurid-themes": "0.0.0-2",
|
|
51
|
-
"@types/node": "^
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
53
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
+
"@types/node": "^18.0.5",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
|
53
|
+
"@typescript-eslint/parser": "^5.30.6",
|
|
54
54
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
55
|
-
"eslint": "^8.
|
|
56
|
-
"rollup": "^2.
|
|
55
|
+
"eslint": "^8.19.0",
|
|
56
|
+
"rollup": "^2.77.0",
|
|
57
57
|
"rollup-plugin-terser": "^7.0.2",
|
|
58
|
-
"rollup-plugin-typescript2": "^0.
|
|
59
|
-
"ts-node": "^10.
|
|
58
|
+
"rollup-plugin-typescript2": "^0.32.1",
|
|
59
|
+
"ts-node": "^10.9.1",
|
|
60
60
|
"ttypescript": "^1.5.13",
|
|
61
|
-
"typescript": "^4.
|
|
61
|
+
"typescript": "^4.7.4",
|
|
62
62
|
"typescript-transform-paths": "^3.3.1"
|
|
63
63
|
}
|
|
64
64
|
}
|