@things-factory/reference-app 4.1.28 → 5.0.0-alpha.1
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/attachments/1aa35791-259f-42f3-9bab-faf4dc81c54a.png +0 -0
- package/attachments/39e79f93-f50c-4d0d-9016-12ef6fc72d04.pptx +0 -0
- package/attachments/5705d276-f428-44d6-a0b8-9667671fc011.png +0 -0
- package/attachments/5f63a469-132c-4ddd-a7a8-37d01f693c9d.png +0 -0
- package/attachments/69808491-8e6b-45e2-9bf8-dccea1c5b52e.png +0 -0
- package/attachments/6c3b55e5-8a42-4afa-a456-9f540972a4b5.png +0 -0
- package/attachments/7927fe8e-2246-453d-9869-7072b983437c.png +0 -0
- package/attachments/7d150574-01b8-4439-96a0-d57299f3ffcf.png +0 -0
- package/attachments/8bacec9a-bd5d-4dbf-bbcb-9f08dd7b60d5.png +0 -0
- package/attachments/a1cf142c-f3c2-442c-b8d5-a7f9cc6a59b3.png +0 -0
- package/attachments/aedcc3d7-a4ab-4ada-98bd-0db6fa5061ba.png +0 -0
- package/attachments/c1cd9051-bcf4-4711-89a2-63dfefbd969a.png +0 -0
- package/attachments/cb3ac834-ece0-4802-bef0-dfdc0fcd93bd.png +0 -0
- package/attachments/fb06c90b-df44-4ac7-b71c-056278439290.png +0 -0
- package/client/bootstrap.js +14 -9
- package/client/themes/grist-theme.css +3 -0
- package/db.sqlite +0 -0
- package/dist-server/index.js +5 -1
- package/dist-server/index.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -0
- package/logs/.33a2b6820ab05dbb0f8bea4849090e12685d0b36-audit.json +14 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +20 -0
- package/logs/application-2022-03-03-12.log +4 -0
- package/logs/connections-2022-01-01-00.log +0 -0
- package/logs/connections-2022-02-23-16.log +0 -0
- package/logs/connections-2022-03-03-12.log +0 -0
- package/package.json +39 -38
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/client/bootstrap.js
CHANGED
|
@@ -3,21 +3,23 @@ import '@things-factory/barcode-base' /* for <default-label-printer-setting-let>
|
|
|
3
3
|
import '@things-factory/notification' /* for notification-badge */
|
|
4
4
|
import './components/ocr-viewpart'
|
|
5
5
|
|
|
6
|
-
import {
|
|
6
|
+
import { html } from 'lit-html'
|
|
7
|
+
|
|
8
|
+
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
7
9
|
import { getEditor, registerEditor, registerRenderer } from '@operato/data-grist'
|
|
8
|
-
import {
|
|
10
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
11
|
+
import { auth } from '@things-factory/auth-base'
|
|
12
|
+
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
13
|
+
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@things-factory/layout-base'
|
|
9
14
|
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
|
10
|
-
|
|
11
15
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
12
16
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
13
|
-
import {
|
|
14
|
-
|
|
17
|
+
import { navigate, store } from '@things-factory/shell'
|
|
18
|
+
|
|
15
19
|
import { IdEditor } from './editors/id-editor'
|
|
16
|
-
import { IdRenderer } from './renderers/id-renderer'
|
|
17
|
-
import { auth } from '@things-factory/auth-base'
|
|
18
20
|
import { getMenuTemplate } from './menu'
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
+
import { BarcodeRenderer } from './renderers/barcode-renderer'
|
|
22
|
+
import { IdRenderer } from './renderers/id-renderer'
|
|
21
23
|
|
|
22
24
|
console.log(
|
|
23
25
|
`%c
|
|
@@ -36,6 +38,9 @@ export default function bootstrap() {
|
|
|
36
38
|
registerEditor('id', IdEditor)
|
|
37
39
|
registerEditor('barcode', getEditor('string'))
|
|
38
40
|
|
|
41
|
+
/* set board-modeller group and default templates */
|
|
42
|
+
registerDefaultGroups()
|
|
43
|
+
|
|
39
44
|
setupMenuPart({
|
|
40
45
|
hovering: true,
|
|
41
46
|
position: VIEWPART_POSITION.HEADERBAR,
|
|
@@ -139,6 +139,8 @@ body {
|
|
|
139
139
|
--record-view-footer-button-color: var(--theme-white-color);
|
|
140
140
|
--record-view-footer-iconbutton-size: var(--fontsize-large);
|
|
141
141
|
--record-view-footer-focus-background: var(--primary-color);
|
|
142
|
+
|
|
143
|
+
--ox-grist-padding: var(--padding-default) var(--padding-default) 0 var(--padding-default);
|
|
142
144
|
}
|
|
143
145
|
|
|
144
146
|
@media only screen and (max-width: 460px) {
|
|
@@ -150,6 +152,7 @@ body {
|
|
|
150
152
|
--record-view-footer-iconbutton-size: 35px;
|
|
151
153
|
--record-view-footer-iconbutton-margin: -2px;
|
|
152
154
|
--record-view-footer-iconbutton-display: block;
|
|
155
|
+
--ox-grist-padding: 0;
|
|
153
156
|
}
|
|
154
157
|
}
|
|
155
158
|
|
package/db.sqlite
ADDED
|
Binary file
|
package/dist-server/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist-server/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,gDAA6B;AAE7B,oBAAiB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 2
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1646277166001,
|
|
10
|
+
"name": "logs/application-2022-03-03-12.log",
|
|
11
|
+
"hash": "ffcbfc8dc4a85df8c898b3dee72e2797"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"hashType": "md5"
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 14
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.33a2b6820ab05dbb0f8bea4849090e12685d0b36-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1640966868409,
|
|
10
|
+
"name": "logs/connections-2022-01-01-00.log",
|
|
11
|
+
"hash": "30cd7f1157b4efdd264957756d0da1da"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 14
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1645599637107,
|
|
10
|
+
"name": "logs/connections-2022-02-23-16.log",
|
|
11
|
+
"hash": "8f401c079305cd71461b9b0c338eb388"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"date": 1646277169860,
|
|
15
|
+
"name": "logs/connections-2022-03-03-12.log",
|
|
16
|
+
"hash": "099d75b2053d33c0bcd9d720f68d7a45"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"hashType": "md5"
|
|
20
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-03-03T03:12:48.100Z info: File Storage is Ready.
|
|
2
|
+
2022-03-03T03:12:54.022Z info: Database connection established
|
|
3
|
+
2022-03-03T03:12:55.007Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-03-03T03:12:55.007Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.1",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@hatiolab/things-scene": "^2.7.34",
|
|
41
41
|
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
-
"@operato/data-grist": "^0.
|
|
43
|
-
"@operato/ghost-print": "^0.
|
|
44
|
-
"@operato/graphql": "^0.
|
|
45
|
-
"@operato/help": "^0.
|
|
46
|
-
"@operato/i18n": "^0.
|
|
47
|
-
"@operato/input": "^0.
|
|
48
|
-
"@operato/layout": "^0.
|
|
49
|
-
"@operato/ocr": "^0.
|
|
50
|
-
"@operato/popup": "^0.
|
|
51
|
-
"@operato/pull-to-refresh": "^0.
|
|
42
|
+
"@operato/data-grist": "^0.4.1",
|
|
43
|
+
"@operato/ghost-print": "^0.4.1",
|
|
44
|
+
"@operato/graphql": "^0.4.1",
|
|
45
|
+
"@operato/help": "^0.4.1",
|
|
46
|
+
"@operato/i18n": "^0.4.1",
|
|
47
|
+
"@operato/input": "^0.4.1",
|
|
48
|
+
"@operato/layout": "^0.4.1",
|
|
49
|
+
"@operato/ocr": "^0.4.1",
|
|
50
|
+
"@operato/popup": "^0.4.1",
|
|
51
|
+
"@operato/pull-to-refresh": "^0.4.1",
|
|
52
52
|
"@operato/scene-chartjs": "^0.1.5",
|
|
53
53
|
"@operato/scene-clock": "^0.1.5",
|
|
54
54
|
"@operato/scene-gauge": "^0.1.5",
|
|
@@ -59,34 +59,35 @@
|
|
|
59
59
|
"@operato/scene-random": "^0.1.5",
|
|
60
60
|
"@operato/scene-switch": "^0.1.5",
|
|
61
61
|
"@operato/scene-tab": "^0.1.5",
|
|
62
|
-
"@operato/shell": "^0.
|
|
63
|
-
"@operato/utils": "^0.
|
|
64
|
-
"@things-factory/api": "^
|
|
65
|
-
"@things-factory/apptool-ui": "^
|
|
66
|
-
"@things-factory/auth-ui": "^
|
|
67
|
-
"@things-factory/board-service": "^
|
|
68
|
-
"@things-factory/board-ui": "^
|
|
69
|
-
"@things-factory/context-ui": "^
|
|
70
|
-
"@things-factory/dashboard": "^
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/export-ui
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/
|
|
77
|
-
"@things-factory/
|
|
78
|
-
"@things-factory/
|
|
79
|
-
"@things-factory/
|
|
80
|
-
"@things-factory/
|
|
81
|
-
"@things-factory/
|
|
82
|
-
"@things-factory/
|
|
83
|
-
"@things-factory/
|
|
84
|
-
"@things-factory/setting-
|
|
85
|
-
"@things-factory/
|
|
86
|
-
"@things-factory/
|
|
62
|
+
"@operato/shell": "^0.4.1",
|
|
63
|
+
"@operato/utils": "^0.4.1",
|
|
64
|
+
"@things-factory/api": "^5.0.0-alpha.1",
|
|
65
|
+
"@things-factory/apptool-ui": "^5.0.0-alpha.1",
|
|
66
|
+
"@things-factory/auth-ui": "^5.0.0-alpha.1",
|
|
67
|
+
"@things-factory/board-service": "^5.0.0-alpha.1",
|
|
68
|
+
"@things-factory/board-ui": "^5.0.0-alpha.1",
|
|
69
|
+
"@things-factory/context-ui": "^5.0.0-alpha.1",
|
|
70
|
+
"@things-factory/dashboard": "^5.0.0-alpha.1",
|
|
71
|
+
"@things-factory/dataset": "^5.0.0-alpha.1",
|
|
72
|
+
"@things-factory/export-ui": "^5.0.0-alpha.1",
|
|
73
|
+
"@things-factory/export-ui-excel": "^5.0.0-alpha.1",
|
|
74
|
+
"@things-factory/grist-ui": "^5.0.0-alpha.1",
|
|
75
|
+
"@things-factory/help": "^5.0.0-alpha.1",
|
|
76
|
+
"@things-factory/integration-ui": "^5.0.0-alpha.1",
|
|
77
|
+
"@things-factory/lite-menu": "^5.0.0-alpha.1",
|
|
78
|
+
"@things-factory/more-ui": "^5.0.0-alpha.1",
|
|
79
|
+
"@things-factory/notification": "^5.0.0-alpha.1",
|
|
80
|
+
"@things-factory/oauth2-client": "^5.0.0-alpha.1",
|
|
81
|
+
"@things-factory/print-ui": "^5.0.0-alpha.1",
|
|
82
|
+
"@things-factory/resource-ui": "^5.0.0-alpha.1",
|
|
83
|
+
"@things-factory/scene-form": "^5.0.0-alpha.1",
|
|
84
|
+
"@things-factory/setting-base": "^5.0.0-alpha.1",
|
|
85
|
+
"@things-factory/setting-ui": "^5.0.0-alpha.1",
|
|
86
|
+
"@things-factory/shell": "^5.0.0-alpha.1",
|
|
87
|
+
"@things-factory/system-ui": "^5.0.0-alpha.1"
|
|
87
88
|
},
|
|
88
89
|
"devDependencies": {
|
|
89
|
-
"@things-factory/builder": "^
|
|
90
|
+
"@things-factory/builder": "^5.0.0-alpha.1"
|
|
90
91
|
},
|
|
91
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "2b3e3818a5d7ab7fdfff9214cc65f56885b27ad0"
|
|
92
93
|
}
|