@things-factory/operato-ecs 6.1.67 → 6.1.68

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.
@@ -7,6 +7,7 @@ import { auth } from '@things-factory/auth-base'
7
7
  import { setAuthManagementMenus } from '@things-factory/auth-ui'
8
8
  import { setupAppToolPart } from '@things-factory/apptool-ui'
9
9
  import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
10
+ import { setupContextUIPart } from '@things-factory/context-ui'
10
11
  import { ADD_MORENDA } from '@things-factory/more-base'
11
12
  import { ADD_SETTING } from '@things-factory/setting-base'
12
13
  import { navigate, store } from '@things-factory/shell'
@@ -22,14 +23,19 @@ console.log(
22
23
  'background: #222; color: #bada55'
23
24
  )
24
25
 
25
- export default function bootstrap() {
26
- setupAppToolPart({
26
+ export default async function bootstrap() {
27
+ await setupAppToolPart({
27
28
  toolbar: true,
28
29
  busybar: true,
29
30
  mdibar: false
30
31
  })
31
32
 
32
- setupMenuPart({ hovering: true })
33
+ await setupContextUIPart({
34
+ titlebar: 'header',
35
+ contextToolbar: 'page-footer'
36
+ })
37
+
38
+ await setupMenuPart({ hovering: true })
33
39
  updateMenuTemplate([])
34
40
 
35
41
  /* set board-modeller group and default templates */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "6.1.67",
3
+ "version": "6.1.68",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -54,23 +54,23 @@
54
54
  "@operato/scene-table": "^1.0.0",
55
55
  "@operato/scene-timer": "^1.0.0",
56
56
  "@things-factory/api": "^6.1.66",
57
- "@things-factory/apptool-ui": "^6.1.67",
57
+ "@things-factory/apptool-ui": "^6.1.68",
58
58
  "@things-factory/auth-ui": "^6.1.67",
59
59
  "@things-factory/board-service": "^6.1.66",
60
60
  "@things-factory/board-ui": "^6.1.66",
61
- "@things-factory/context-ui": "^6.1.66",
61
+ "@things-factory/context-ui": "^6.1.68",
62
62
  "@things-factory/dashboard": "^6.1.66",
63
- "@things-factory/export-ui": "^6.1.66",
63
+ "@things-factory/export-ui": "^6.1.68",
64
64
  "@things-factory/help": "^6.1.66",
65
65
  "@things-factory/i18n-base": "^6.1.66",
66
66
  "@things-factory/integration-melsec": "^6.1.66",
67
67
  "@things-factory/integration-modbus": "^6.1.66",
68
68
  "@things-factory/integration-ui": "^6.1.66",
69
- "@things-factory/lite-menu": "^6.1.67",
70
- "@things-factory/more-ui": "^6.1.66",
69
+ "@things-factory/lite-menu": "^6.1.68",
70
+ "@things-factory/more-ui": "^6.1.68",
71
71
  "@things-factory/oauth2-client": "^6.1.66",
72
- "@things-factory/print-ui": "^6.1.66",
73
- "@things-factory/resource-ui": "^6.1.67",
72
+ "@things-factory/print-ui": "^6.1.68",
73
+ "@things-factory/resource-ui": "^6.1.68",
74
74
  "@things-factory/setting-base": "^6.1.66",
75
75
  "@things-factory/setting-ui": "^6.1.66",
76
76
  "@things-factory/shell": "^6.1.66",
@@ -80,5 +80,5 @@
80
80
  "devDependencies": {
81
81
  "@things-factory/builder": "^6.1.66"
82
82
  },
83
- "gitHead": "8c200f0b657dc3bb429325d2ae41fecc2bd840a8"
83
+ "gitHead": "c24575516e5047a6c94a65fe5442f278e5a80148"
84
84
  }