@things-factory/board-service 6.2.165 → 6.2.167
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/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/views/internal-board-full-feature-view.html +3 -3
- package/views/internal-board-player-view.html +3 -3
- package/views/internal-board-service-view.html +3 -3
- package/views/internal-label-command-view.html +3 -3
- package/views/template.html +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/board-service",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.167",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@things-factory/auth-base": "^6.2.
|
|
27
|
+
"@things-factory/auth-base": "^6.2.167",
|
|
28
28
|
"@things-factory/env": "^6.2.139",
|
|
29
|
-
"@things-factory/fav-base": "^6.2.
|
|
30
|
-
"@things-factory/font-base": "^6.2.
|
|
31
|
-
"@things-factory/integration-base": "^6.2.
|
|
29
|
+
"@things-factory/fav-base": "^6.2.167",
|
|
30
|
+
"@things-factory/font-base": "^6.2.167",
|
|
31
|
+
"@things-factory/integration-base": "^6.2.167",
|
|
32
32
|
"@things-factory/operato-license-checker": "^4.0.4",
|
|
33
33
|
"content-disposition": "^0.5.3",
|
|
34
34
|
"generic-pool": "^3.8.2"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@thiagoelg/node-printer": "0.6.2",
|
|
38
38
|
"puppeteer": "^20.7.3"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "c0b528ac67d7cd766d901e0e2f74ae39ef648cab"
|
|
41
41
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="icon" href="/assets/favicon.ico" />
|
|
9
9
|
<base href="<%= base ? base : '' %>" />
|
|
10
10
|
|
|
11
|
-
<style>
|
|
11
|
+
<style nonce="<%= nonce %>">
|
|
12
12
|
html,
|
|
13
13
|
body {
|
|
14
14
|
margin: 0;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<body>
|
|
37
37
|
<div id="scene"></div>
|
|
38
38
|
|
|
39
|
-
<script>
|
|
39
|
+
<script nonce="<%= nonce %>">
|
|
40
40
|
const model = <%- JSON.stringify(model) %>;
|
|
41
41
|
const { fontStyles, fonts } = model
|
|
42
42
|
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
}
|
|
61
61
|
</script>
|
|
62
62
|
|
|
63
|
-
<script type="module">
|
|
63
|
+
<script type="module" nonce="<%= nonce %>">
|
|
64
64
|
const data = <%- JSON.stringify(data) %>;
|
|
65
65
|
const id = <%- JSON.stringify(id) %>;
|
|
66
66
|
const { ReferenceMap, create, error } = scene
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="icon" href="/assets/favicon.ico" />
|
|
9
9
|
<base href="<%= base ? base : '' %>" />
|
|
10
10
|
|
|
11
|
-
<style>
|
|
11
|
+
<style nonce="<%= nonce %>">
|
|
12
12
|
html,
|
|
13
13
|
body {
|
|
14
14
|
margin: 0;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<body>
|
|
37
37
|
<div id="scene"></div>
|
|
38
38
|
|
|
39
|
-
<script>
|
|
39
|
+
<script nonce="<%= nonce %>">
|
|
40
40
|
const model = <%- JSON.stringify(model) %>;
|
|
41
41
|
const { boards, fontStyles, fonts } = model
|
|
42
42
|
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
}
|
|
61
61
|
</script>
|
|
62
62
|
|
|
63
|
-
<script type="module">
|
|
63
|
+
<script type="module" nonce="<%= nonce %>">
|
|
64
64
|
const data = <%- JSON.stringify(data) %>;
|
|
65
65
|
const id = <%- JSON.stringify(id) %>;
|
|
66
66
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="icon" href="/assets/favicon.ico" />
|
|
9
9
|
<base href="<%= base ? base : '' %>" />
|
|
10
10
|
|
|
11
|
-
<style>
|
|
11
|
+
<style nonce="<%= nonce %>">
|
|
12
12
|
html,
|
|
13
13
|
body {
|
|
14
14
|
margin: 0;
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<div id="scene"></div>
|
|
29
29
|
|
|
30
30
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
31
|
-
<script>
|
|
31
|
+
<script nonce="<%= nonce %>">
|
|
32
32
|
const model = <%- JSON.stringify(model) %>;
|
|
33
33
|
const { fontStyles, fonts } = model
|
|
34
34
|
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<script src="/node_modules/@hatiolab/things-scene/things-scene-min.js"></script>
|
|
55
55
|
<script src="/headless-scene-components.js"></script>
|
|
56
56
|
|
|
57
|
-
<script>
|
|
57
|
+
<script nonce="<%= nonce %>">
|
|
58
58
|
const data = <%- JSON.stringify(data) %>;
|
|
59
59
|
|
|
60
60
|
const el = document.getElementById('scene')
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<link rel="icon" href="/assets/favicon.ico" />
|
|
9
9
|
|
|
10
|
-
<style>
|
|
10
|
+
<style nonce="<%= nonce %>">
|
|
11
11
|
html,
|
|
12
12
|
body {
|
|
13
13
|
margin: 0;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<div id="scene-container"></div>
|
|
26
26
|
|
|
27
27
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
28
|
-
<script>
|
|
28
|
+
<script nonce="<%= nonce %>">
|
|
29
29
|
var model = <%- JSON.stringify(model) %>;
|
|
30
30
|
const { fontStyles, fonts } = model
|
|
31
31
|
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
<script src="/node_modules/@hatiolab/things-scene/things-scene-min.js"></script>
|
|
52
52
|
<script src="/headless-scene-components.js"></script>
|
|
53
53
|
|
|
54
|
-
<script>
|
|
54
|
+
<script nonce="<%= nonce %>">
|
|
55
55
|
const sceneContainer = document.getElementById('scene-container')
|
|
56
56
|
|
|
57
57
|
function createScene(model) {
|
package/views/template.html
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="google" content="notranslate" />
|
|
6
6
|
<link rel="icon" href="/assets/favicon.ico" />
|
|
7
7
|
|
|
8
|
-
<style>
|
|
8
|
+
<style nonce="<%= nonce %>">
|
|
9
9
|
html,
|
|
10
10
|
body {
|
|
11
11
|
margin: 0;
|