jmapcloud-ng 2.0.4 → 2.0.5-qa.10
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/package.json +7 -1
- package/public/index.js +4 -4
- package/public/index.min.js +190 -0
- package/public/ng-core/index.js +4 -4
- package/.env.example +0 -14
- package/index.html.example +0 -57
package/.env.example
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
# Used to build restBaseUrl in dev:
|
|
2
|
-
# https://api.${REST_BASE_API_DEV_SERVER_PREFIX}.jmapcloud.io
|
|
3
|
-
# ex: "dev-jdoe", "qa", etc
|
|
4
|
-
REST_BASE_API_DEV_SERVER_PREFIX="dev-<username>"
|
|
5
|
-
|
|
6
|
-
# optional: ng core usually runs on https://localhost:8085/src/core.ts
|
|
7
|
-
# if your setup is different, configure it here
|
|
8
|
-
CORE_INDEX_FILE_URL=""
|
|
9
|
-
|
|
10
|
-
# Optional Vite dev server port - defaults to 8086
|
|
11
|
-
DEV_PORT=""
|
|
12
|
-
|
|
13
|
-
# Optional: your MUI-X Pro license
|
|
14
|
-
MUI_X_PRO_LICENSE="MUI-X-PRO-LICENSE"
|
package/index.html.example
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<title>JMap Cloud NG</title>
|
|
5
|
-
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
|
6
|
-
<meta charset="UTF-8" />
|
|
7
|
-
<style>
|
|
8
|
-
html,
|
|
9
|
-
body {
|
|
10
|
-
padding: 0px;
|
|
11
|
-
margin: 0px;
|
|
12
|
-
height: 100%;
|
|
13
|
-
width: 100%;
|
|
14
|
-
background-color: #262626;
|
|
15
|
-
overflow: hidden;
|
|
16
|
-
}
|
|
17
|
-
.jmapcloud-backround-image {
|
|
18
|
-
position: absolute;
|
|
19
|
-
top: 0;
|
|
20
|
-
left: 0;
|
|
21
|
-
width: 100%;
|
|
22
|
-
height: 100%;
|
|
23
|
-
-webkit-background-position: center;
|
|
24
|
-
background-position: center;
|
|
25
|
-
-webkit-background-size: cover;
|
|
26
|
-
background-size: cover;
|
|
27
|
-
background-repeat: no-repeat;
|
|
28
|
-
background-image: url(https://assets.jmapcloud.io/images/transitionPageBackground.jpeg);
|
|
29
|
-
}
|
|
30
|
-
.radial-gradient-overlay {
|
|
31
|
-
position: absolute;
|
|
32
|
-
top: 0;
|
|
33
|
-
right: 0;
|
|
34
|
-
left: 0;
|
|
35
|
-
bottom: 0;
|
|
36
|
-
width: 100%;
|
|
37
|
-
height: 100%;
|
|
38
|
-
background-image:
|
|
39
|
-
radial-gradient(circle farthest-corner at 50% 50%, rgba(39, 39, 38, 0.1) 65%, #272726),
|
|
40
|
-
linear-gradient(180deg, #272726 10%, rgba(39, 39, 38, 0.7) 50%, #272726);
|
|
41
|
-
}
|
|
42
|
-
</style>
|
|
43
|
-
<script type="text/javascript">
|
|
44
|
-
window.JMAP_OPTIONS = {
|
|
45
|
-
// Replace with your target API base URL.
|
|
46
|
-
restBaseUrl: "https://api.<YOUR_ENV>.jmapcloud.io",
|
|
47
|
-
map: {},
|
|
48
|
-
application: {}
|
|
49
|
-
}
|
|
50
|
-
</script>
|
|
51
|
-
</head>
|
|
52
|
-
<body>
|
|
53
|
-
<div class="jmapcloud-backround-image"></div>
|
|
54
|
-
<div class="radial-gradient-overlay"></div>
|
|
55
|
-
<script type="module" src="/src/boot.ts"></script>
|
|
56
|
-
</body>
|
|
57
|
-
</html>
|