sample-piral 0.14.11-beta.3674 → 0.14.11
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.293f0b.js → index.ab31a1.js} +27 -10
- package/app/index.ab31a1.js.map +1 -0
- package/app/index.d.ts +28 -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 +7 -7
- package/app/index.293f0b.js.map +0 -1
package/app/index.d.ts
CHANGED
|
@@ -1828,6 +1828,10 @@ declare module "sample-piral" {
|
|
|
1828
1828
|
* The provided error details.
|
|
1829
1829
|
*/
|
|
1830
1830
|
error: any;
|
|
1831
|
+
/**
|
|
1832
|
+
* The name of the pilet emitting the error.
|
|
1833
|
+
*/
|
|
1834
|
+
pilet?: string;
|
|
1831
1835
|
}
|
|
1832
1836
|
|
|
1833
1837
|
/**
|
|
@@ -1856,6 +1860,10 @@ declare module "sample-piral" {
|
|
|
1856
1860
|
* The provided error details.
|
|
1857
1861
|
*/
|
|
1858
1862
|
error: any;
|
|
1863
|
+
/**
|
|
1864
|
+
* The name of the pilet emitting the error.
|
|
1865
|
+
*/
|
|
1866
|
+
pilet?: string;
|
|
1859
1867
|
}
|
|
1860
1868
|
|
|
1861
1869
|
/**
|
|
@@ -1880,6 +1888,10 @@ declare module "sample-piral" {
|
|
|
1880
1888
|
* The provided error details.
|
|
1881
1889
|
*/
|
|
1882
1890
|
error: any;
|
|
1891
|
+
/**
|
|
1892
|
+
* The name of the pilet emitting the error.
|
|
1893
|
+
*/
|
|
1894
|
+
pilet?: string;
|
|
1883
1895
|
}
|
|
1884
1896
|
|
|
1885
1897
|
export interface LanguagesPickerProps {
|
|
@@ -2065,6 +2077,10 @@ declare module "sample-piral" {
|
|
|
2065
2077
|
* The currently used number of rows.
|
|
2066
2078
|
*/
|
|
2067
2079
|
rows: number;
|
|
2080
|
+
/**
|
|
2081
|
+
* The name of the pilet emitting the error.
|
|
2082
|
+
*/
|
|
2083
|
+
pilet?: string;
|
|
2068
2084
|
}
|
|
2069
2085
|
|
|
2070
2086
|
/**
|
|
@@ -2083,6 +2099,10 @@ declare module "sample-piral" {
|
|
|
2083
2099
|
* The type of the used menu.
|
|
2084
2100
|
*/
|
|
2085
2101
|
menu: MenuType;
|
|
2102
|
+
/**
|
|
2103
|
+
* The name of the pilet emitting the error.
|
|
2104
|
+
*/
|
|
2105
|
+
pilet?: string;
|
|
2086
2106
|
}
|
|
2087
2107
|
|
|
2088
2108
|
/**
|
|
@@ -2101,6 +2121,10 @@ declare module "sample-piral" {
|
|
|
2101
2121
|
* Callback for closing the modal programmatically.
|
|
2102
2122
|
*/
|
|
2103
2123
|
onClose(): void;
|
|
2124
|
+
/**
|
|
2125
|
+
* The name of the pilet emitting the error.
|
|
2126
|
+
*/
|
|
2127
|
+
pilet?: string;
|
|
2104
2128
|
}
|
|
2105
2129
|
|
|
2106
2130
|
/**
|
|
@@ -2115,6 +2139,10 @@ declare module "sample-piral" {
|
|
|
2115
2139
|
* The provided error details.
|
|
2116
2140
|
*/
|
|
2117
2141
|
error: any;
|
|
2142
|
+
/**
|
|
2143
|
+
* The name of the pilet emitting the error.
|
|
2144
|
+
*/
|
|
2145
|
+
pilet?: string;
|
|
2118
2146
|
}
|
|
2119
2147
|
|
|
2120
2148
|
/**
|
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.ab31a1.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.ab31a1.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.14.11
|
|
4
|
+
"version": "0.14.11",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://piral.io",
|
|
7
7
|
"keywords": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"piralCLI": {
|
|
27
|
-
"version": "0.14.
|
|
27
|
+
"version": "0.14.11",
|
|
28
28
|
"generated": true
|
|
29
29
|
},
|
|
30
30
|
"main": "./app/index.js",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"@types/react-dom": "^17.0.0",
|
|
37
37
|
"@types/react-router": "^5.1.8",
|
|
38
38
|
"@types/react-router-dom": "^5.1.6",
|
|
39
|
-
"piral-cli": "^0.14.
|
|
40
|
-
"piral-cli-webpack5": "^0.14.
|
|
39
|
+
"piral-cli": "^0.14.11",
|
|
40
|
+
"piral-cli-webpack5": "^0.14.11",
|
|
41
41
|
"sass": "^1.17.0",
|
|
42
42
|
"bootstrap": "^4.3.1",
|
|
43
|
-
"piral": "^0.14.
|
|
44
|
-
"piral-auth": "^0.14.
|
|
45
|
-
"piral-search": "^0.14.
|
|
43
|
+
"piral": "^0.14.11",
|
|
44
|
+
"piral-auth": "^0.14.11",
|
|
45
|
+
"piral-search": "^0.14.11",
|
|
46
46
|
"reactstrap": "8.10.0",
|
|
47
47
|
"react": "17.0.2",
|
|
48
48
|
"react-dom": "17.0.2",
|