@things-factory/operato-fleet 4.0.21 → 4.0.25
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 +16 -14
- package/package.json +56 -56
package/client/bootstrap.js
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
|
+
import '@things-factory/notification'
|
|
2
|
+
import '@things-factory/board-ui'
|
|
3
|
+
import './viewparts/user-circle'
|
|
4
|
+
import './viewparts/menu-tools'
|
|
5
|
+
import './viewparts/infowindow-setting-let'
|
|
6
|
+
|
|
1
7
|
import { html } from 'lit-element'
|
|
2
|
-
|
|
8
|
+
|
|
9
|
+
import { registerDefaultGroups } from '@operato/board/dist/src/component/register-default-groups'
|
|
10
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
3
11
|
import { auth } from '@things-factory/auth-base'
|
|
4
12
|
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
13
|
+
import { fetchBoardSettings, UPDATE_BOARD_SETTINGS } from '@things-factory/dashboard'
|
|
5
14
|
import {
|
|
6
15
|
appendViewpart,
|
|
7
|
-
updateViewpart,
|
|
8
16
|
toggleOverlay,
|
|
9
17
|
TOOL_POSITION,
|
|
18
|
+
updateViewpart,
|
|
10
19
|
VIEWPART_POSITION
|
|
11
20
|
} from '@things-factory/layout-base'
|
|
12
21
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
13
|
-
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
14
22
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
15
|
-
import '@things-factory/
|
|
16
|
-
import { UPDATE_BOARD_SETTINGS, fetchBoardSettings } from '@things-factory/dashboard'
|
|
17
|
-
import '@things-factory/board-ui'
|
|
23
|
+
import { navigate, store } from '@things-factory/shell'
|
|
18
24
|
|
|
19
25
|
import { searchFleets } from './actions/fleets'
|
|
20
|
-
|
|
21
|
-
import fleets from './reducers/fleets'
|
|
22
|
-
|
|
23
26
|
import GoogleMapLoader from './commons/google-map-loader'
|
|
24
|
-
|
|
25
27
|
import { MARKER_IW_BOARD_FOR_FLEET, MARKER_IW_BOARD_FOR_TRACK } from './const'
|
|
26
|
-
|
|
27
|
-
import './viewparts/user-circle'
|
|
28
|
-
import './viewparts/menu-tools'
|
|
29
|
-
import './viewparts/infowindow-setting-let'
|
|
28
|
+
import fleets from './reducers/fleets'
|
|
30
29
|
|
|
31
30
|
console.log(
|
|
32
31
|
`%c
|
|
@@ -54,6 +53,9 @@ export default function bootstrap() {
|
|
|
54
53
|
/* load google-map api */
|
|
55
54
|
GoogleMapLoader.load()
|
|
56
55
|
|
|
56
|
+
/* set board-modeller group and default templates */
|
|
57
|
+
registerDefaultGroups()
|
|
58
|
+
|
|
57
59
|
/* set auth management menus into more-panel */
|
|
58
60
|
auth.on('profile', async ({ credential }) => {
|
|
59
61
|
setAuthManagementMenus(credential)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-fleet",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.25",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -41,64 +41,64 @@
|
|
|
41
41
|
"@material/mwc-formfield": "^0.25.3",
|
|
42
42
|
"@material/mwc-linear-progress": "^0.25.3",
|
|
43
43
|
"@material/mwc-radio": "^0.25.3",
|
|
44
|
-
"@operato/board": "^0.2.
|
|
45
|
-
"@operato/scene-chartjs": "^0.0.
|
|
46
|
-
"@operato/scene-clock": "^0.0.
|
|
47
|
-
"@operato/scene-clone": "^0.0.
|
|
48
|
-
"@operato/scene-compass": "^0.0.
|
|
49
|
-
"@operato/scene-gauge": "^0.0.
|
|
50
|
-
"@operato/scene-grist": "^0.0.
|
|
51
|
-
"@operato/scene-indoor-map": "^0.0.
|
|
52
|
-
"@operato/scene-integration": "^0.0.
|
|
53
|
-
"@operato/scene-legend": "^0.0.
|
|
54
|
-
"@operato/scene-progressbar": "^0.0.
|
|
55
|
-
"@operato/scene-random": "^0.0.
|
|
56
|
-
"@operato/scene-switch": "^0.0.
|
|
57
|
-
"@operato/scene-tab": "^0.0.
|
|
58
|
-
"@operato/scene-table": "^0.0.
|
|
59
|
-
"@operato/scene-timer": "^0.0.
|
|
60
|
-
"@operato/scene-wheel-sorter": "^0.0.
|
|
61
|
-
"@things-factory/apptool-ui": "^4.0.
|
|
62
|
-
"@things-factory/attachment-base": "^4.0.
|
|
63
|
-
"@things-factory/auth-ui": "^4.0.
|
|
64
|
-
"@things-factory/biz-base": "^4.0.
|
|
65
|
-
"@things-factory/board-service": "^4.0.
|
|
66
|
-
"@things-factory/board-ui": "^4.0.
|
|
67
|
-
"@things-factory/code-ui": "^4.0.
|
|
68
|
-
"@things-factory/context-ui": "^4.0.
|
|
69
|
-
"@things-factory/dashboard": "^4.0.
|
|
70
|
-
"@things-factory/export-ui": "^4.0.
|
|
71
|
-
"@things-factory/export-ui-csv": "^4.0.
|
|
72
|
-
"@things-factory/export-ui-excel": "^4.0.
|
|
73
|
-
"@things-factory/grist-ui": "^4.0.
|
|
74
|
-
"@things-factory/help": "^4.0.
|
|
75
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
76
|
-
"@things-factory/integration-fulfillment": "^4.0.
|
|
77
|
-
"@things-factory/integration-marketplace": "^4.0.
|
|
78
|
-
"@things-factory/more-ui": "^4.0.
|
|
79
|
-
"@things-factory/notification": "^4.0.
|
|
80
|
-
"@things-factory/oauth2-client": "^4.0.
|
|
81
|
-
"@things-factory/pdf": "^4.0.
|
|
82
|
-
"@things-factory/resource-ui": "^4.0.
|
|
83
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
84
|
-
"@things-factory/scene-excel": "^4.0.
|
|
85
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
86
|
-
"@things-factory/scene-form": "^4.0.
|
|
87
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
88
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
44
|
+
"@operato/board": "^0.2.52",
|
|
45
|
+
"@operato/scene-chartjs": "^0.0.24",
|
|
46
|
+
"@operato/scene-clock": "^0.0.24",
|
|
47
|
+
"@operato/scene-clone": "^0.0.24",
|
|
48
|
+
"@operato/scene-compass": "^0.0.24",
|
|
49
|
+
"@operato/scene-gauge": "^0.0.24",
|
|
50
|
+
"@operato/scene-grist": "^0.0.24",
|
|
51
|
+
"@operato/scene-indoor-map": "^0.0.24",
|
|
52
|
+
"@operato/scene-integration": "^0.0.24",
|
|
53
|
+
"@operato/scene-legend": "^0.0.24",
|
|
54
|
+
"@operato/scene-progressbar": "^0.0.24",
|
|
55
|
+
"@operato/scene-random": "^0.0.24",
|
|
56
|
+
"@operato/scene-switch": "^0.0.24",
|
|
57
|
+
"@operato/scene-tab": "^0.0.24",
|
|
58
|
+
"@operato/scene-table": "^0.0.24",
|
|
59
|
+
"@operato/scene-timer": "^0.0.24",
|
|
60
|
+
"@operato/scene-wheel-sorter": "^0.0.24",
|
|
61
|
+
"@things-factory/apptool-ui": "^4.0.25",
|
|
62
|
+
"@things-factory/attachment-base": "^4.0.25",
|
|
63
|
+
"@things-factory/auth-ui": "^4.0.25",
|
|
64
|
+
"@things-factory/biz-base": "^4.0.25",
|
|
65
|
+
"@things-factory/board-service": "^4.0.25",
|
|
66
|
+
"@things-factory/board-ui": "^4.0.25",
|
|
67
|
+
"@things-factory/code-ui": "^4.0.25",
|
|
68
|
+
"@things-factory/context-ui": "^4.0.25",
|
|
69
|
+
"@things-factory/dashboard": "^4.0.25",
|
|
70
|
+
"@things-factory/export-ui": "^4.0.25",
|
|
71
|
+
"@things-factory/export-ui-csv": "^4.0.25",
|
|
72
|
+
"@things-factory/export-ui-excel": "^4.0.25",
|
|
73
|
+
"@things-factory/grist-ui": "^4.0.25",
|
|
74
|
+
"@things-factory/help": "^4.0.25",
|
|
75
|
+
"@things-factory/i18n-ui": "^4.0.25",
|
|
76
|
+
"@things-factory/integration-fulfillment": "^4.0.25",
|
|
77
|
+
"@things-factory/integration-marketplace": "^4.0.25",
|
|
78
|
+
"@things-factory/more-ui": "^4.0.25",
|
|
79
|
+
"@things-factory/notification": "^4.0.25",
|
|
80
|
+
"@things-factory/oauth2-client": "^4.0.25",
|
|
81
|
+
"@things-factory/pdf": "^4.0.25",
|
|
82
|
+
"@things-factory/resource-ui": "^4.0.25",
|
|
83
|
+
"@things-factory/scene-data-transform": "^4.0.25",
|
|
84
|
+
"@things-factory/scene-excel": "^4.0.25",
|
|
85
|
+
"@things-factory/scene-firebase": "^4.0.25",
|
|
86
|
+
"@things-factory/scene-form": "^4.0.25",
|
|
87
|
+
"@things-factory/scene-google-map": "^4.0.25",
|
|
88
|
+
"@things-factory/scene-graphql": "^4.0.25",
|
|
89
89
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
90
|
-
"@things-factory/scene-label": "^4.0.
|
|
91
|
-
"@things-factory/scene-marker": "^4.0.
|
|
92
|
-
"@things-factory/scene-mqtt": "^4.0.
|
|
93
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
94
|
-
"@things-factory/scene-restful": "^4.0.
|
|
95
|
-
"@things-factory/scene-visualizer": "^4.0.
|
|
96
|
-
"@things-factory/setting-ui": "^4.0.
|
|
97
|
-
"@things-factory/system-ui": "^4.0.
|
|
90
|
+
"@things-factory/scene-label": "^4.0.25",
|
|
91
|
+
"@things-factory/scene-marker": "^4.0.25",
|
|
92
|
+
"@things-factory/scene-mqtt": "^4.0.25",
|
|
93
|
+
"@things-factory/scene-news-ticker": "^4.0.25",
|
|
94
|
+
"@things-factory/scene-restful": "^4.0.25",
|
|
95
|
+
"@things-factory/scene-visualizer": "^4.0.25",
|
|
96
|
+
"@things-factory/setting-ui": "^4.0.25",
|
|
97
|
+
"@things-factory/system-ui": "^4.0.25",
|
|
98
98
|
"chance": "^1.1.4"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
|
-
"@things-factory/builder": "^4.0.
|
|
101
|
+
"@things-factory/builder": "^4.0.25"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "9c44141d651dab7b4a9c0f0b6fecb8d6937d116f"
|
|
104
104
|
}
|