@things-factory/reference-app 4.2.12 → 4.3.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/client/bootstrap.js +14 -9
- package/client/themes/grist-theme.css +3 -0
- package/package.json +36 -36
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
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.3
|
|
43
|
-
"@operato/ghost-print": "^0.3
|
|
44
|
-
"@operato/graphql": "^0.3
|
|
45
|
-
"@operato/help": "^0.3
|
|
46
|
-
"@operato/i18n": "^0.3
|
|
47
|
-
"@operato/input": "^0.3
|
|
48
|
-
"@operato/layout": "^0.3
|
|
49
|
-
"@operato/ocr": "^0.3
|
|
50
|
-
"@operato/popup": "^0.3
|
|
51
|
-
"@operato/pull-to-refresh": "^0.3
|
|
42
|
+
"@operato/data-grist": "^0.4.3",
|
|
43
|
+
"@operato/ghost-print": "^0.4.3",
|
|
44
|
+
"@operato/graphql": "^0.4.3",
|
|
45
|
+
"@operato/help": "^0.4.3",
|
|
46
|
+
"@operato/i18n": "^0.4.3",
|
|
47
|
+
"@operato/input": "^0.4.3",
|
|
48
|
+
"@operato/layout": "^0.4.3",
|
|
49
|
+
"@operato/ocr": "^0.4.3",
|
|
50
|
+
"@operato/popup": "^0.4.3",
|
|
51
|
+
"@operato/pull-to-refresh": "^0.4.3",
|
|
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,34 @@
|
|
|
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.3
|
|
63
|
-
"@operato/utils": "^0.3
|
|
64
|
-
"@things-factory/api": "^4.
|
|
65
|
-
"@things-factory/apptool-ui": "^4.
|
|
66
|
-
"@things-factory/auth-ui": "^4.
|
|
67
|
-
"@things-factory/board-service": "^4.
|
|
68
|
-
"@things-factory/board-ui": "^4.
|
|
69
|
-
"@things-factory/context-ui": "^4.
|
|
70
|
-
"@things-factory/dashboard": "^4.
|
|
71
|
-
"@things-factory/export-ui": "^4.
|
|
72
|
-
"@things-factory/export-ui-excel": "^4.
|
|
73
|
-
"@things-factory/grist-ui": "^4.
|
|
74
|
-
"@things-factory/help": "^4.
|
|
75
|
-
"@things-factory/integration-ui": "^4.
|
|
76
|
-
"@things-factory/lite-menu": "^4.
|
|
77
|
-
"@things-factory/more-ui": "^4.
|
|
78
|
-
"@things-factory/notification": "^4.
|
|
79
|
-
"@things-factory/oauth2-client": "^4.
|
|
80
|
-
"@things-factory/print-ui": "^4.
|
|
81
|
-
"@things-factory/resource-ui": "^4.
|
|
62
|
+
"@operato/shell": "^0.4.3",
|
|
63
|
+
"@operato/utils": "^0.4.3",
|
|
64
|
+
"@things-factory/api": "^4.3.0",
|
|
65
|
+
"@things-factory/apptool-ui": "^4.3.0",
|
|
66
|
+
"@things-factory/auth-ui": "^4.3.0",
|
|
67
|
+
"@things-factory/board-service": "^4.3.0",
|
|
68
|
+
"@things-factory/board-ui": "^4.3.0",
|
|
69
|
+
"@things-factory/context-ui": "^4.3.0",
|
|
70
|
+
"@things-factory/dashboard": "^4.3.0",
|
|
71
|
+
"@things-factory/export-ui": "^4.3.0",
|
|
72
|
+
"@things-factory/export-ui-excel": "^4.3.0",
|
|
73
|
+
"@things-factory/grist-ui": "^4.3.0",
|
|
74
|
+
"@things-factory/help": "^4.3.0",
|
|
75
|
+
"@things-factory/integration-ui": "^4.3.0",
|
|
76
|
+
"@things-factory/lite-menu": "^4.3.0",
|
|
77
|
+
"@things-factory/more-ui": "^4.3.0",
|
|
78
|
+
"@things-factory/notification": "^4.3.0",
|
|
79
|
+
"@things-factory/oauth2-client": "^4.3.0",
|
|
80
|
+
"@things-factory/print-ui": "^4.3.0",
|
|
81
|
+
"@things-factory/resource-ui": "^4.3.0",
|
|
82
82
|
"@things-factory/scene-form": "^4.1.40",
|
|
83
|
-
"@things-factory/setting-base": "^4.
|
|
84
|
-
"@things-factory/setting-ui": "^4.
|
|
85
|
-
"@things-factory/shell": "^4.
|
|
86
|
-
"@things-factory/system-ui": "^4.
|
|
83
|
+
"@things-factory/setting-base": "^4.3.0",
|
|
84
|
+
"@things-factory/setting-ui": "^4.3.0",
|
|
85
|
+
"@things-factory/shell": "^4.3.0",
|
|
86
|
+
"@things-factory/system-ui": "^4.3.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@things-factory/builder": "^4.1.40"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "772c8e6f56a3dda655ad49f7018a49a37e081ee8"
|
|
92
92
|
}
|