@things-factory/operato-pms 4.0.22 → 4.0.26
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 +13 -7
- package/package.json +56 -56
package/client/bootstrap.js
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
+
import '@things-factory/notification'
|
|
2
|
+
import './viewparts/user-circle'
|
|
3
|
+
|
|
1
4
|
import { html } from 'lit-element'
|
|
2
|
-
|
|
5
|
+
|
|
6
|
+
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
7
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
3
8
|
import { auth } from '@things-factory/auth-base'
|
|
4
9
|
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
10
|
+
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@things-factory/layout-base'
|
|
11
|
+
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
|
7
12
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
8
|
-
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
9
13
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
10
|
-
import {
|
|
11
|
-
import '@things-factory/
|
|
14
|
+
import { navigate, store } from '@things-factory/shell'
|
|
15
|
+
import { isMobileDevice } from '@things-factory/utils'
|
|
12
16
|
|
|
13
|
-
import './viewparts/user-circle'
|
|
14
17
|
import { getMenuTemplate } from './menu'
|
|
15
18
|
|
|
16
19
|
console.log(
|
|
@@ -27,6 +30,9 @@ console.log(
|
|
|
27
30
|
export default function bootstrap() {
|
|
28
31
|
setupMenuPart()
|
|
29
32
|
|
|
33
|
+
/* set board-modeller group and default templates */
|
|
34
|
+
registerDefaultGroups()
|
|
35
|
+
|
|
30
36
|
/* set auth management menus into more-panel */
|
|
31
37
|
auth.on('profile', async ({ credential }) => {
|
|
32
38
|
setAuthManagementMenus(credential)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-pms",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.26",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -38,63 +38,63 @@
|
|
|
38
38
|
"docker:run": "docker run -p 4000:3000 hatiolab/operato-pms:latest"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@operato/ghost-print": "^0.
|
|
42
|
-
"@operato/scene-chartjs": "^0.0.
|
|
43
|
-
"@operato/scene-clock": "^0.0.
|
|
44
|
-
"@operato/scene-clone": "^0.0.
|
|
45
|
-
"@operato/scene-compass": "^0.0.
|
|
46
|
-
"@operato/scene-gauge": "^0.0.
|
|
47
|
-
"@operato/scene-indoor-map": "^0.0.
|
|
48
|
-
"@operato/scene-legend": "^0.0.
|
|
49
|
-
"@operato/scene-progressbar": "^0.0.
|
|
50
|
-
"@operato/scene-random": "^0.0.
|
|
51
|
-
"@operato/scene-switch": "^0.0.
|
|
52
|
-
"@operato/scene-tab": "^0.0.
|
|
53
|
-
"@operato/scene-table": "^0.0.
|
|
54
|
-
"@operato/scene-wheel-sorter": "^0.0.
|
|
55
|
-
"@things-factory/apptool-ui": "^4.0.
|
|
56
|
-
"@things-factory/auth-ui": "^4.0.
|
|
57
|
-
"@things-factory/biz-base": "^4.0.
|
|
58
|
-
"@things-factory/board-service": "^4.0.
|
|
59
|
-
"@things-factory/board-ui": "^4.0.
|
|
60
|
-
"@things-factory/code-ui": "^4.0.
|
|
61
|
-
"@things-factory/context-ui": "^4.0.
|
|
62
|
-
"@things-factory/dashboard": "^4.0.
|
|
63
|
-
"@things-factory/document-template-ui": "^4.0.
|
|
64
|
-
"@things-factory/export-ui": "^4.0.
|
|
65
|
-
"@things-factory/export-ui-csv": "^4.0.
|
|
66
|
-
"@things-factory/export-ui-excel": "^4.0.
|
|
67
|
-
"@things-factory/fav-base": "^4.0.
|
|
68
|
-
"@things-factory/form-ui": "^4.0.
|
|
69
|
-
"@things-factory/grist-ui": "^4.0.
|
|
70
|
-
"@things-factory/help": "^4.0.
|
|
71
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
72
|
-
"@things-factory/import-ui": "^4.0.
|
|
73
|
-
"@things-factory/import-ui-excel": "^4.0.
|
|
74
|
-
"@things-factory/lite-menu": "^4.0.
|
|
75
|
-
"@things-factory/more-ui": "^4.0.
|
|
76
|
-
"@things-factory/notification": "^4.0.
|
|
77
|
-
"@things-factory/print-ui": "^4.0.
|
|
78
|
-
"@things-factory/resource-ui": "^4.0.
|
|
79
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
80
|
-
"@things-factory/scene-excel": "^4.0.
|
|
81
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
82
|
-
"@things-factory/scene-form": "^4.0.
|
|
83
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
84
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
41
|
+
"@operato/ghost-print": "^0.3.1",
|
|
42
|
+
"@operato/scene-chartjs": "^0.0.25",
|
|
43
|
+
"@operato/scene-clock": "^0.0.25",
|
|
44
|
+
"@operato/scene-clone": "^0.0.25",
|
|
45
|
+
"@operato/scene-compass": "^0.0.25",
|
|
46
|
+
"@operato/scene-gauge": "^0.0.25",
|
|
47
|
+
"@operato/scene-indoor-map": "^0.0.25",
|
|
48
|
+
"@operato/scene-legend": "^0.0.25",
|
|
49
|
+
"@operato/scene-progressbar": "^0.0.25",
|
|
50
|
+
"@operato/scene-random": "^0.0.25",
|
|
51
|
+
"@operato/scene-switch": "^0.0.25",
|
|
52
|
+
"@operato/scene-tab": "^0.0.25",
|
|
53
|
+
"@operato/scene-table": "^0.0.25",
|
|
54
|
+
"@operato/scene-wheel-sorter": "^0.0.25",
|
|
55
|
+
"@things-factory/apptool-ui": "^4.0.26",
|
|
56
|
+
"@things-factory/auth-ui": "^4.0.26",
|
|
57
|
+
"@things-factory/biz-base": "^4.0.26",
|
|
58
|
+
"@things-factory/board-service": "^4.0.26",
|
|
59
|
+
"@things-factory/board-ui": "^4.0.26",
|
|
60
|
+
"@things-factory/code-ui": "^4.0.26",
|
|
61
|
+
"@things-factory/context-ui": "^4.0.26",
|
|
62
|
+
"@things-factory/dashboard": "^4.0.26",
|
|
63
|
+
"@things-factory/document-template-ui": "^4.0.26",
|
|
64
|
+
"@things-factory/export-ui": "^4.0.26",
|
|
65
|
+
"@things-factory/export-ui-csv": "^4.0.26",
|
|
66
|
+
"@things-factory/export-ui-excel": "^4.0.26",
|
|
67
|
+
"@things-factory/fav-base": "^4.0.26",
|
|
68
|
+
"@things-factory/form-ui": "^4.0.26",
|
|
69
|
+
"@things-factory/grist-ui": "^4.0.26",
|
|
70
|
+
"@things-factory/help": "^4.0.26",
|
|
71
|
+
"@things-factory/i18n-ui": "^4.0.26",
|
|
72
|
+
"@things-factory/import-ui": "^4.0.26",
|
|
73
|
+
"@things-factory/import-ui-excel": "^4.0.26",
|
|
74
|
+
"@things-factory/lite-menu": "^4.0.26",
|
|
75
|
+
"@things-factory/more-ui": "^4.0.26",
|
|
76
|
+
"@things-factory/notification": "^4.0.26",
|
|
77
|
+
"@things-factory/print-ui": "^4.0.26",
|
|
78
|
+
"@things-factory/resource-ui": "^4.0.26",
|
|
79
|
+
"@things-factory/scene-data-transform": "^4.0.26",
|
|
80
|
+
"@things-factory/scene-excel": "^4.0.26",
|
|
81
|
+
"@things-factory/scene-firebase": "^4.0.26",
|
|
82
|
+
"@things-factory/scene-form": "^4.0.26",
|
|
83
|
+
"@things-factory/scene-google-map": "^4.0.26",
|
|
84
|
+
"@things-factory/scene-graphql": "^4.0.26",
|
|
85
85
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
86
|
-
"@things-factory/scene-label": "^4.0.
|
|
87
|
-
"@things-factory/scene-marker": "^4.0.
|
|
88
|
-
"@things-factory/scene-mqtt": "^4.0.
|
|
89
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
90
|
-
"@things-factory/scene-restful": "^4.0.
|
|
91
|
-
"@things-factory/scene-visualizer": "^4.0.
|
|
92
|
-
"@things-factory/setting-ui": "^4.0.
|
|
93
|
-
"@things-factory/shell": "^4.0.
|
|
94
|
-
"@things-factory/system-ui": "^4.0.
|
|
86
|
+
"@things-factory/scene-label": "^4.0.26",
|
|
87
|
+
"@things-factory/scene-marker": "^4.0.26",
|
|
88
|
+
"@things-factory/scene-mqtt": "^4.0.26",
|
|
89
|
+
"@things-factory/scene-news-ticker": "^4.0.26",
|
|
90
|
+
"@things-factory/scene-restful": "^4.0.26",
|
|
91
|
+
"@things-factory/scene-visualizer": "^4.0.26",
|
|
92
|
+
"@things-factory/setting-ui": "^4.0.26",
|
|
93
|
+
"@things-factory/shell": "^4.0.26",
|
|
94
|
+
"@things-factory/system-ui": "^4.0.26"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
|
-
"@things-factory/builder": "^4.0.
|
|
97
|
+
"@things-factory/builder": "^4.0.26"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "c4b39c74b9ce2472f30c26eb36ec62054c1ecf82"
|
|
100
100
|
}
|