@things-factory/operato-board 8.0.0-alpha.8 → 8.0.0-beta.0
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/Dockerfile +15 -0
- package/Dockerfile-arm64 +67 -0
- package/dist-client/bootstrap.js +12 -0
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/pages/app-board-player-page.d.ts +0 -1
- package/dist-client/pages/app-board-player-page.js +1 -2
- package/dist-client/pages/app-board-player-page.js.map +1 -1
- package/dist-client/pages/app-board-viewer-page.d.ts +1 -3
- package/dist-client/pages/app-board-viewer-page.js +0 -8
- package/dist-client/pages/app-board-viewer-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/installer/docker-compose.yml +10 -0
- package/package.json +83 -81
- package/dist-client/themes/index.css +0 -16
|
@@ -10,6 +10,11 @@ services:
|
|
|
10
10
|
build: .
|
|
11
11
|
container_name: operato-board
|
|
12
12
|
image: hatiolab/operato-board:latest
|
|
13
|
+
logging:
|
|
14
|
+
driver: 'json-file'
|
|
15
|
+
options:
|
|
16
|
+
max-size: '100m'
|
|
17
|
+
max-file: '3'
|
|
13
18
|
privileged: true
|
|
14
19
|
volumes:
|
|
15
20
|
- ./logs:/app/logs
|
|
@@ -44,3 +49,8 @@ services:
|
|
|
44
49
|
- ./config.yaml:/app/config.yaml
|
|
45
50
|
ports:
|
|
46
51
|
- '9902:9902'
|
|
52
|
+
logging:
|
|
53
|
+
driver: 'json-file'
|
|
54
|
+
options:
|
|
55
|
+
max-size: '100m'
|
|
56
|
+
max-file: '3'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "8.0.0-
|
|
3
|
+
"version": "8.0.0-beta.0",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -37,98 +37,100 @@
|
|
|
37
37
|
"stop:dev": "kill $(lsof -t -i:3000,3001)",
|
|
38
38
|
"stop": "things-factory-stop operato-board",
|
|
39
39
|
"docker": "npm run build:app && things-factory-dockerize hatiolab/operato-board:latest hatiolab/operato-board:$npm_package_version linux/amd64",
|
|
40
|
+
"docker:arm": "npm run build:app && things-factory-dockerize-arm hatiolab/operato-board:${npm_package_version}-arm linux/arm64",
|
|
40
41
|
"docker:run": "docker run --platform linux/amd64 -p 4000:3000 hatiolab/operato-board:latest",
|
|
41
42
|
"docker:push": "docker image push hatiolab/operato-board:latest && docker image push hatiolab/operato-board:$npm_package_version",
|
|
43
|
+
"docker:push:arm": "docker image push hatiolab/operato-board:${npm_package_version-arm}-arm",
|
|
42
44
|
"docker:cn": "npm run build:app:cn && things-factory-dockerize hatiolab/operato-board:latest-cn hatiolab/operato-board:$npm_package_version-cn linux/amd64",
|
|
43
45
|
"docker:run:cn": "docker run --platform linux/amd64 -p 4000:3000 hatiolab/operato-board:latest-cn",
|
|
44
46
|
"docker:push:cn": "docker image push hatiolab/operato-board:latest-cn && docker image push hatiolab/operato-board:$npm_package_version-cn"
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
49
|
"@material/web": "^2.0.0",
|
|
48
|
-
"@operato/attachment": "^8.0.0-
|
|
49
|
-
"@operato/font": "^8.0.0-
|
|
50
|
-
"@operato/graphql": "^8.0.0-
|
|
51
|
-
"@operato/help": "^8.0.0-
|
|
52
|
-
"@operato/i18n": "^8.0.0-
|
|
53
|
-
"@operato/input": "^8.0.0-
|
|
54
|
-
"@operato/layout": "^8.0.0-
|
|
55
|
-
"@operato/pull-to-refresh": "^8.0.0-
|
|
56
|
-
"@operato/scene-auth": "^8.0.0-
|
|
57
|
-
"@operato/scene-chartjs": "^8.0.0-
|
|
58
|
-
"@operato/scene-clock": "^8.0.0-
|
|
59
|
-
"@operato/scene-clone": "^8.0.0-
|
|
60
|
-
"@operato/scene-compass": "^8.0.0-
|
|
61
|
-
"@operato/scene-data-transform": "^8.0.0-
|
|
62
|
-
"@operato/scene-excel": "^8.0.0-
|
|
63
|
-
"@operato/scene-form": "^8.0.0-
|
|
64
|
-
"@operato/scene-gantt": "^8.0.0-
|
|
65
|
-
"@operato/scene-gauge": "^8.0.0-
|
|
66
|
-
"@operato/scene-google-map": "^8.0.0-
|
|
67
|
-
"@operato/scene-graphql": "^8.0.0-
|
|
68
|
-
"@operato/scene-half-roundrect": "^8.0.0-
|
|
69
|
-
"@operato/scene-i18n": "^8.0.0-
|
|
70
|
-
"@operato/scene-image-slider": "^8.0.0-
|
|
71
|
-
"@operato/scene-indoor-map": "^8.0.0-
|
|
72
|
-
"@operato/scene-integration": "^8.0.0-
|
|
73
|
-
"@operato/scene-label": "^8.0.0-
|
|
74
|
-
"@operato/scene-legend": "^8.0.0-
|
|
75
|
-
"@operato/scene-manufacturing": "^8.0.0-
|
|
76
|
-
"@operato/scene-marker": "^8.0.0-
|
|
77
|
-
"@operato/scene-news-ticker": "^8.0.0-
|
|
78
|
-
"@operato/scene-polypath": "^8.0.0-
|
|
79
|
-
"@operato/scene-progressbar": "^8.0.0-
|
|
80
|
-
"@operato/scene-random": "^8.0.0-
|
|
81
|
-
"@operato/scene-restful": "^8.0.0-
|
|
82
|
-
"@operato/scene-scichart": "^8.0.0-
|
|
83
|
-
"@operato/scene-switch": "^8.0.0-
|
|
84
|
-
"@operato/scene-tab": "^8.0.0-
|
|
85
|
-
"@operato/scene-table": "^8.0.0-
|
|
86
|
-
"@operato/scene-timer": "^8.0.0-
|
|
87
|
-
"@operato/scene-visualizer": "^8.0.0-
|
|
88
|
-
"@operato/scene-wheel-sorter": "^8.0.0-
|
|
89
|
-
"@operato/shell": "^8.0.0-
|
|
90
|
-
"@operato/styles": "^8.0.0-
|
|
91
|
-
"@operato/utils": "^8.0.0-
|
|
92
|
-
"@things-factory/apptool-ui": "^8.0.0-
|
|
93
|
-
"@things-factory/auth-azure-ad": "^8.0.0-
|
|
94
|
-
"@things-factory/auth-google": "^8.0.0-
|
|
95
|
-
"@things-factory/auth-ui": "^8.0.0-
|
|
96
|
-
"@things-factory/board-service": "^8.0.0-
|
|
97
|
-
"@things-factory/board-ui": "^8.0.0-
|
|
98
|
-
"@things-factory/context-ui": "^8.0.0-
|
|
99
|
-
"@things-factory/evaluation": "^8.0.0-
|
|
100
|
-
"@things-factory/export-ui": "^8.0.0-
|
|
101
|
-
"@things-factory/fav-base": "^8.0.0-
|
|
102
|
-
"@things-factory/font-base": "^8.0.0-
|
|
103
|
-
"@things-factory/form-ui": "^8.0.0-
|
|
104
|
-
"@things-factory/help": "^8.0.0-
|
|
105
|
-
"@things-factory/i18n-base": "^8.0.0-
|
|
106
|
-
"@things-factory/import-ui": "^8.0.0-
|
|
107
|
-
"@things-factory/integration-base": "^8.0.0-
|
|
108
|
-
"@things-factory/integration-email": "^8.0.0-
|
|
109
|
-
"@things-factory/integration-influxdb": "^8.0.0-
|
|
110
|
-
"@things-factory/integration-msgraph": "^8.0.0-
|
|
111
|
-
"@things-factory/integration-notification": "^8.0.0-
|
|
112
|
-
"@things-factory/integration-openai": "^8.0.0-
|
|
113
|
-
"@things-factory/integration-ui": "^8.0.0-
|
|
114
|
-
"@things-factory/more-ui": "^8.0.0-
|
|
115
|
-
"@things-factory/notification": "^8.0.0-
|
|
116
|
-
"@things-factory/oauth2-client": "^8.0.0-
|
|
117
|
-
"@things-factory/offline-ui": "^8.0.0-
|
|
118
|
-
"@things-factory/pdf": "^8.0.0-
|
|
119
|
-
"@things-factory/print-
|
|
120
|
-
"@things-factory/
|
|
121
|
-
"@things-factory/
|
|
122
|
-
"@things-factory/setting-ui": "^8.0.0-
|
|
123
|
-
"@things-factory/shell": "^8.0.0-
|
|
124
|
-
"@things-factory/system": "^8.0.0-
|
|
50
|
+
"@operato/attachment": "^8.0.0-beta",
|
|
51
|
+
"@operato/font": "^8.0.0-beta",
|
|
52
|
+
"@operato/graphql": "^8.0.0-beta",
|
|
53
|
+
"@operato/help": "^8.0.0-beta",
|
|
54
|
+
"@operato/i18n": "^8.0.0-beta",
|
|
55
|
+
"@operato/input": "^8.0.0-beta",
|
|
56
|
+
"@operato/layout": "^8.0.0-beta",
|
|
57
|
+
"@operato/pull-to-refresh": "^8.0.0-beta",
|
|
58
|
+
"@operato/scene-auth": "^8.0.0-beta",
|
|
59
|
+
"@operato/scene-chartjs": "^8.0.0-beta",
|
|
60
|
+
"@operato/scene-clock": "^8.0.0-beta",
|
|
61
|
+
"@operato/scene-clone": "^8.0.0-beta",
|
|
62
|
+
"@operato/scene-compass": "^8.0.0-beta",
|
|
63
|
+
"@operato/scene-data-transform": "^8.0.0-beta",
|
|
64
|
+
"@operato/scene-excel": "^8.0.0-beta",
|
|
65
|
+
"@operato/scene-form": "^8.0.0-beta",
|
|
66
|
+
"@operato/scene-gantt": "^8.0.0-beta",
|
|
67
|
+
"@operato/scene-gauge": "^8.0.0-beta",
|
|
68
|
+
"@operato/scene-google-map": "^8.0.0-beta",
|
|
69
|
+
"@operato/scene-graphql": "^8.0.0-beta",
|
|
70
|
+
"@operato/scene-half-roundrect": "^8.0.0-beta",
|
|
71
|
+
"@operato/scene-i18n": "^8.0.0-beta",
|
|
72
|
+
"@operato/scene-image-slider": "^8.0.0-beta",
|
|
73
|
+
"@operato/scene-indoor-map": "^8.0.0-beta",
|
|
74
|
+
"@operato/scene-integration": "^8.0.0-beta",
|
|
75
|
+
"@operato/scene-label": "^8.0.0-beta",
|
|
76
|
+
"@operato/scene-legend": "^8.0.0-beta",
|
|
77
|
+
"@operato/scene-manufacturing": "^8.0.0-beta",
|
|
78
|
+
"@operato/scene-marker": "^8.0.0-beta",
|
|
79
|
+
"@operato/scene-news-ticker": "^8.0.0-beta",
|
|
80
|
+
"@operato/scene-polypath": "^8.0.0-beta",
|
|
81
|
+
"@operato/scene-progressbar": "^8.0.0-beta",
|
|
82
|
+
"@operato/scene-random": "^8.0.0-beta",
|
|
83
|
+
"@operato/scene-restful": "^8.0.0-beta",
|
|
84
|
+
"@operato/scene-scichart": "^8.0.0-beta",
|
|
85
|
+
"@operato/scene-switch": "^8.0.0-beta",
|
|
86
|
+
"@operato/scene-tab": "^8.0.0-beta",
|
|
87
|
+
"@operato/scene-table": "^8.0.0-beta",
|
|
88
|
+
"@operato/scene-timer": "^8.0.0-beta",
|
|
89
|
+
"@operato/scene-visualizer": "^8.0.0-beta",
|
|
90
|
+
"@operato/scene-wheel-sorter": "^8.0.0-beta",
|
|
91
|
+
"@operato/shell": "^8.0.0-beta",
|
|
92
|
+
"@operato/styles": "^8.0.0-beta",
|
|
93
|
+
"@operato/utils": "^8.0.0-beta",
|
|
94
|
+
"@things-factory/apptool-ui": "^8.0.0-beta.0",
|
|
95
|
+
"@things-factory/auth-azure-ad": "^8.0.0-beta.0",
|
|
96
|
+
"@things-factory/auth-google": "^8.0.0-beta.0",
|
|
97
|
+
"@things-factory/auth-ui": "^8.0.0-beta.0",
|
|
98
|
+
"@things-factory/board-service": "^8.0.0-beta.0",
|
|
99
|
+
"@things-factory/board-ui": "^8.0.0-beta.0",
|
|
100
|
+
"@things-factory/context-ui": "^8.0.0-beta.0",
|
|
101
|
+
"@things-factory/evaluation": "^8.0.0-beta.0",
|
|
102
|
+
"@things-factory/export-ui": "^8.0.0-beta.0",
|
|
103
|
+
"@things-factory/fav-base": "^8.0.0-beta.0",
|
|
104
|
+
"@things-factory/font-base": "^8.0.0-beta.0",
|
|
105
|
+
"@things-factory/form-ui": "^8.0.0-beta.0",
|
|
106
|
+
"@things-factory/help": "^8.0.0-beta.0",
|
|
107
|
+
"@things-factory/i18n-base": "^8.0.0-beta.0",
|
|
108
|
+
"@things-factory/import-ui": "^8.0.0-beta.0",
|
|
109
|
+
"@things-factory/integration-base": "^8.0.0-beta.0",
|
|
110
|
+
"@things-factory/integration-email": "^8.0.0-beta.0",
|
|
111
|
+
"@things-factory/integration-influxdb": "^8.0.0-beta.0",
|
|
112
|
+
"@things-factory/integration-msgraph": "^8.0.0-beta.0",
|
|
113
|
+
"@things-factory/integration-notification": "^8.0.0-beta.0",
|
|
114
|
+
"@things-factory/integration-openai": "^8.0.0-beta.0",
|
|
115
|
+
"@things-factory/integration-ui": "^8.0.0-beta.0",
|
|
116
|
+
"@things-factory/more-ui": "^8.0.0-beta.0",
|
|
117
|
+
"@things-factory/notification": "^8.0.0-beta.0",
|
|
118
|
+
"@things-factory/oauth2-client": "^8.0.0-beta.0",
|
|
119
|
+
"@things-factory/offline-ui": "^8.0.0-beta.0",
|
|
120
|
+
"@things-factory/pdf": "^8.0.0-beta.0",
|
|
121
|
+
"@things-factory/print-ui": "^8.0.0-beta.0",
|
|
122
|
+
"@things-factory/resource-ui": "^8.0.0-beta.0",
|
|
123
|
+
"@things-factory/scheduler": "^8.0.0-beta.0",
|
|
124
|
+
"@things-factory/setting-ui": "^8.0.0-beta.0",
|
|
125
|
+
"@things-factory/shell": "^8.0.0-beta.0",
|
|
126
|
+
"@things-factory/system": "^8.0.0-beta.0"
|
|
125
127
|
},
|
|
126
128
|
"devDependencies": {
|
|
127
|
-
"@things-factory/board-test": "^8.0.0-
|
|
128
|
-
"@things-factory/builder": "^8.0.0-
|
|
129
|
+
"@things-factory/board-test": "^8.0.0-beta.0",
|
|
130
|
+
"@things-factory/builder": "^8.0.0-beta.0"
|
|
129
131
|
},
|
|
130
132
|
"resolutions": {
|
|
131
133
|
"passport": "^0.7.0"
|
|
132
134
|
},
|
|
133
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "add6fb8224b2cb19cbea47bed6a5ecb0424c9a28"
|
|
134
136
|
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
html,
|
|
2
|
-
body {
|
|
3
|
-
margin: 0;
|
|
4
|
-
padding: 0;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
|
|
7
|
-
overscroll-behavior-y: none;
|
|
8
|
-
|
|
9
|
-
/* This is a font-stack that tries to use the system-default sans-serifs first */
|
|
10
|
-
font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
11
|
-
line-height: 1.5;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
|
|
14
|
-
accent-color: var(--md-sys-color-primary);
|
|
15
|
-
background-color: var(--md-sys-color-background);
|
|
16
|
-
}
|