@things-factory/operato-mms 6.1.64 → 6.1.67
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 +11 -4
- package/package.json +32 -32
package/client/bootstrap.js
CHANGED
|
@@ -8,6 +8,7 @@ import { html } from 'lit'
|
|
|
8
8
|
|
|
9
9
|
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
10
10
|
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
11
|
+
import { setupAppToolPart } from '@things-factory/apptool-ui'
|
|
11
12
|
import { auth } from '@things-factory/auth-base'
|
|
12
13
|
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
13
14
|
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@things-factory/layout-base'
|
|
@@ -32,15 +33,21 @@ console.log(
|
|
|
32
33
|
)
|
|
33
34
|
|
|
34
35
|
export default function bootstrap() {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
setupAppToolPart({
|
|
37
|
+
toolbar: true,
|
|
38
|
+
busybar: true,
|
|
39
|
+
mdibar: true
|
|
40
|
+
})
|
|
39
41
|
|
|
40
42
|
setupMenuPart({
|
|
41
43
|
slotTemplate: html` <domain-switch slot="head"></domain-switch> `
|
|
42
44
|
})
|
|
43
45
|
|
|
46
|
+
store.addReducers({ mms })
|
|
47
|
+
|
|
48
|
+
/* set board-modeller group and default templates */
|
|
49
|
+
registerDefaultGroups()
|
|
50
|
+
|
|
44
51
|
/* set auth management menus into more-panel */
|
|
45
52
|
auth.on('profile', async ({ credential }) => {
|
|
46
53
|
setAuthManagementMenus(credential)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-mms",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.67",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -69,39 +69,39 @@
|
|
|
69
69
|
"@operato/scene-timer": "^1.0.0",
|
|
70
70
|
"@operato/scene-visualizer": "^1.0.0",
|
|
71
71
|
"@operato/scene-wheel-sorter": "^1.0.0",
|
|
72
|
-
"@things-factory/apptool-ui": "^6.1.
|
|
73
|
-
"@things-factory/attachment-base": "^6.1.
|
|
74
|
-
"@things-factory/auth-ui": "^6.1.
|
|
75
|
-
"@things-factory/biz-base": "^6.1.
|
|
76
|
-
"@things-factory/board-service": "^6.1.
|
|
77
|
-
"@things-factory/board-ui": "^6.1.
|
|
78
|
-
"@things-factory/code-ui": "^6.1.
|
|
79
|
-
"@things-factory/context-ui": "^6.1.
|
|
80
|
-
"@things-factory/dashboard": "^6.1.
|
|
81
|
-
"@things-factory/export-ui": "^6.1.
|
|
82
|
-
"@things-factory/export-ui-csv": "^6.1.
|
|
83
|
-
"@things-factory/export-ui-excel": "^6.1.
|
|
84
|
-
"@things-factory/geography": "^6.1.
|
|
85
|
-
"@things-factory/help": "^6.1.
|
|
86
|
-
"@things-factory/i18n-base": "^6.1.
|
|
87
|
-
"@things-factory/integration-fulfillment": "^6.1.
|
|
88
|
-
"@things-factory/integration-lmd": "^6.1.
|
|
89
|
-
"@things-factory/lite-menu": "^6.1.
|
|
90
|
-
"@things-factory/marketplace-base": "^6.1.
|
|
91
|
-
"@things-factory/more-ui": "^6.1.
|
|
92
|
-
"@things-factory/notification": "^6.1.
|
|
93
|
-
"@things-factory/oauth2-client": "^6.1.
|
|
94
|
-
"@things-factory/pdf": "^6.1.
|
|
95
|
-
"@things-factory/product-base": "^6.1.
|
|
96
|
-
"@things-factory/resource-ui": "^6.1.
|
|
97
|
-
"@things-factory/scene-google-map": "^6.1.
|
|
98
|
-
"@things-factory/setting-ui": "^6.1.
|
|
99
|
-
"@things-factory/system-ui": "^6.1.
|
|
100
|
-
"@things-factory/warehouse-base": "^6.1.
|
|
72
|
+
"@things-factory/apptool-ui": "^6.1.67",
|
|
73
|
+
"@things-factory/attachment-base": "^6.1.66",
|
|
74
|
+
"@things-factory/auth-ui": "^6.1.67",
|
|
75
|
+
"@things-factory/biz-base": "^6.1.66",
|
|
76
|
+
"@things-factory/board-service": "^6.1.66",
|
|
77
|
+
"@things-factory/board-ui": "^6.1.66",
|
|
78
|
+
"@things-factory/code-ui": "^6.1.66",
|
|
79
|
+
"@things-factory/context-ui": "^6.1.66",
|
|
80
|
+
"@things-factory/dashboard": "^6.1.66",
|
|
81
|
+
"@things-factory/export-ui": "^6.1.66",
|
|
82
|
+
"@things-factory/export-ui-csv": "^6.1.66",
|
|
83
|
+
"@things-factory/export-ui-excel": "^6.1.66",
|
|
84
|
+
"@things-factory/geography": "^6.1.66",
|
|
85
|
+
"@things-factory/help": "^6.1.66",
|
|
86
|
+
"@things-factory/i18n-base": "^6.1.66",
|
|
87
|
+
"@things-factory/integration-fulfillment": "^6.1.67",
|
|
88
|
+
"@things-factory/integration-lmd": "^6.1.67",
|
|
89
|
+
"@things-factory/lite-menu": "^6.1.67",
|
|
90
|
+
"@things-factory/marketplace-base": "^6.1.67",
|
|
91
|
+
"@things-factory/more-ui": "^6.1.66",
|
|
92
|
+
"@things-factory/notification": "^6.1.67",
|
|
93
|
+
"@things-factory/oauth2-client": "^6.1.66",
|
|
94
|
+
"@things-factory/pdf": "^6.1.66",
|
|
95
|
+
"@things-factory/product-base": "^6.1.66",
|
|
96
|
+
"@things-factory/resource-ui": "^6.1.67",
|
|
97
|
+
"@things-factory/scene-google-map": "^6.1.66",
|
|
98
|
+
"@things-factory/setting-ui": "^6.1.66",
|
|
99
|
+
"@things-factory/system-ui": "^6.1.66",
|
|
100
|
+
"@things-factory/warehouse-base": "^6.1.67"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@things-factory/builder": "^6.1.
|
|
103
|
+
"@things-factory/builder": "^6.1.66",
|
|
104
104
|
"@types/node-fetch": "^2.5.7"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "8c200f0b657dc3bb429325d2ae41fecc2bd840a8"
|
|
107
107
|
}
|