@things-factory/operato-ecs 7.0.1-alpha.26 → 7.0.1-alpha.30
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 -13
- package/package.json +27 -27
package/client/bootstrap.js
CHANGED
@@ -53,7 +53,7 @@ export default async function bootstrap() {
|
|
53
53
|
store.dispatch({
|
54
54
|
type: ADD_MORENDA,
|
55
55
|
morenda: {
|
56
|
-
icon: html` <
|
56
|
+
icon: html` <md-icon>view_list</md-icon> `,
|
57
57
|
name: html` <ox-i18n msgid="text.addon-menu management"></ox-i18n> `,
|
58
58
|
action: () => {
|
59
59
|
navigate('addon-menu-setting')
|
@@ -66,7 +66,7 @@ export default async function bootstrap() {
|
|
66
66
|
store.dispatch({
|
67
67
|
type: ADD_MORENDA,
|
68
68
|
morenda: {
|
69
|
-
icon: html` <
|
69
|
+
icon: html` <md-icon>settings</md-icon> `,
|
70
70
|
name: html` <ox-i18n msgid="label.setting"></ox-i18n> `,
|
71
71
|
action: () => {
|
72
72
|
navigate('setting')
|
@@ -81,7 +81,7 @@ export default async function bootstrap() {
|
|
81
81
|
store.dispatch({
|
82
82
|
type: ADD_MORENDA,
|
83
83
|
morenda: {
|
84
|
-
icon: html` <
|
84
|
+
icon: html` <md-icon>vpn_key</md-icon> `,
|
85
85
|
name: html` <ox-i18n msgid="text.oauth2-clients"></ox-i18n> `,
|
86
86
|
action: () => {
|
87
87
|
navigate('oauth2-clients')
|
@@ -94,7 +94,7 @@ export default async function bootstrap() {
|
|
94
94
|
store.dispatch({
|
95
95
|
type: ADD_MORENDA,
|
96
96
|
morenda: {
|
97
|
-
icon: html` <
|
97
|
+
icon: html` <md-icon>font_download</md-icon> `,
|
98
98
|
name: html` <ox-i18n msgid="menu.fonts"></ox-i18n> `,
|
99
99
|
action: () => {
|
100
100
|
navigate('font-list')
|
@@ -105,7 +105,7 @@ export default async function bootstrap() {
|
|
105
105
|
store.dispatch({
|
106
106
|
type: ADD_MORENDA,
|
107
107
|
morenda: {
|
108
|
-
icon: html` <
|
108
|
+
icon: html` <md-icon>attachment</md-icon> `,
|
109
109
|
name: html` <ox-i18n msgid="menu.attachments"></ox-i18n> `,
|
110
110
|
action: () => {
|
111
111
|
navigate('attachment-list')
|
@@ -116,7 +116,7 @@ export default async function bootstrap() {
|
|
116
116
|
store.dispatch({
|
117
117
|
type: ADD_MORENDA,
|
118
118
|
morenda: {
|
119
|
-
icon: html` <
|
119
|
+
icon: html` <md-icon>dvr</md-icon> `,
|
120
120
|
name: html` <ox-i18n msgid="menu.board-list"></ox-i18n> `,
|
121
121
|
action: () => {
|
122
122
|
navigate('board-list')
|
@@ -127,7 +127,7 @@ export default async function bootstrap() {
|
|
127
127
|
store.dispatch({
|
128
128
|
type: ADD_MORENDA,
|
129
129
|
morenda: {
|
130
|
-
icon: html` <
|
130
|
+
icon: html` <md-icon>airplay</md-icon> `,
|
131
131
|
name: html` <ox-i18n msgid="menu.play-groups"></ox-i18n> `,
|
132
132
|
action: () => {
|
133
133
|
navigate('play-list')
|
@@ -140,7 +140,7 @@ export default async function bootstrap() {
|
|
140
140
|
store.dispatch({
|
141
141
|
type: ADD_MORENDA,
|
142
142
|
morenda: {
|
143
|
-
icon: html` <
|
143
|
+
icon: html` <md-icon>device_hub</md-icon> `,
|
144
144
|
name: html` <ox-i18n msgid="text.connection"></ox-i18n> `,
|
145
145
|
action: () => {
|
146
146
|
navigate('connection')
|
@@ -151,7 +151,7 @@ export default async function bootstrap() {
|
|
151
151
|
store.dispatch({
|
152
152
|
type: ADD_MORENDA,
|
153
153
|
morenda: {
|
154
|
-
icon: html` <
|
154
|
+
icon: html` <md-icon>format_list_numbered</md-icon> `,
|
155
155
|
name: html` <ox-i18n msgid="text.scenario"></ox-i18n> `,
|
156
156
|
action: () => {
|
157
157
|
navigate('scenario')
|
@@ -162,7 +162,7 @@ export default async function bootstrap() {
|
|
162
162
|
store.dispatch({
|
163
163
|
type: ADD_MORENDA,
|
164
164
|
morenda: {
|
165
|
-
icon: html` <
|
165
|
+
icon: html` <md-icon>hub</md-icon> `,
|
166
166
|
name: html` <ox-i18n msgid="text.integration analysis"></ox-i18n> (beta)`,
|
167
167
|
action: () => {
|
168
168
|
navigate('integration-analysis')
|
@@ -175,7 +175,7 @@ export default async function bootstrap() {
|
|
175
175
|
store.dispatch({
|
176
176
|
type: ADD_MORENDA,
|
177
177
|
morenda: {
|
178
|
-
icon: html` <
|
178
|
+
icon: html` <md-icon>app_registration</md-icon> `,
|
179
179
|
name: html` <ox-i18n msgid="title.state-register"></ox-i18n> `,
|
180
180
|
action: () => {
|
181
181
|
navigate('state-register-page')
|
@@ -187,7 +187,7 @@ export default async function bootstrap() {
|
|
187
187
|
store.dispatch({
|
188
188
|
type: ADD_MORENDA,
|
189
189
|
morenda: {
|
190
|
-
icon: html` <
|
190
|
+
icon: html` <md-icon>extension</md-icon> `,
|
191
191
|
name: html` <ox-i18n msgid="text.api-sandbox"></ox-i18n> `,
|
192
192
|
action: () => {
|
193
193
|
navigate('api-swagger')
|
@@ -198,7 +198,7 @@ export default async function bootstrap() {
|
|
198
198
|
// store.dispatch({
|
199
199
|
// type: ADD_MORENDA,
|
200
200
|
// morenda: {
|
201
|
-
// icon: html` <
|
201
|
+
// icon: html` <md-icon>help</md-icon> `,
|
202
202
|
// name: html` <ox-i18n msgid="text.help"></ox-i18n> `,
|
203
203
|
// action: () => {
|
204
204
|
// navigate('help')
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "7.0.1-alpha.
|
3
|
+
"version": "7.0.1-alpha.30",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -55,33 +55,33 @@
|
|
55
55
|
"@operato/scene-switch": "^2.0.0-alpha.0",
|
56
56
|
"@operato/scene-table": "^2.0.0-alpha.0",
|
57
57
|
"@operato/scene-timer": "^2.0.0-alpha.0",
|
58
|
-
"@things-factory/api": "^7.0.1-alpha.
|
59
|
-
"@things-factory/apptool-ui": "^7.0.1-alpha.
|
60
|
-
"@things-factory/auth-ui": "^7.0.1-alpha.
|
61
|
-
"@things-factory/board-service": "^7.0.1-alpha.
|
62
|
-
"@things-factory/board-ui": "^7.0.1-alpha.
|
63
|
-
"@things-factory/context-ui": "^7.0.1-alpha.
|
64
|
-
"@things-factory/dashboard": "^7.0.1-alpha.
|
65
|
-
"@things-factory/export-ui": "^7.0.1-alpha.
|
66
|
-
"@things-factory/help": "^7.0.1-alpha.
|
67
|
-
"@things-factory/i18n-base": "^7.0.1-alpha.
|
68
|
-
"@things-factory/integration-melsec": "^7.0.1-alpha.
|
69
|
-
"@things-factory/integration-modbus": "^7.0.1-alpha.
|
70
|
-
"@things-factory/integration-opc": "^7.0.1-alpha.
|
71
|
-
"@things-factory/integration-ui": "^7.0.1-alpha.
|
72
|
-
"@things-factory/lite-menu": "^7.0.1-alpha.
|
73
|
-
"@things-factory/more-ui": "^7.0.1-alpha.
|
74
|
-
"@things-factory/notification": "^7.0.1-alpha.
|
75
|
-
"@things-factory/oauth2-client": "^7.0.1-alpha.
|
76
|
-
"@things-factory/print-ui": "^7.0.1-alpha.
|
77
|
-
"@things-factory/resource-ui": "^7.0.1-alpha.
|
78
|
-
"@things-factory/setting-base": "^7.0.1-alpha.
|
79
|
-
"@things-factory/setting-ui": "^7.0.1-alpha.
|
80
|
-
"@things-factory/shell": "^7.0.1-alpha.
|
81
|
-
"@things-factory/system": "^7.0.1-alpha.
|
58
|
+
"@things-factory/api": "^7.0.1-alpha.29",
|
59
|
+
"@things-factory/apptool-ui": "^7.0.1-alpha.29",
|
60
|
+
"@things-factory/auth-ui": "^7.0.1-alpha.30",
|
61
|
+
"@things-factory/board-service": "^7.0.1-alpha.29",
|
62
|
+
"@things-factory/board-ui": "^7.0.1-alpha.29",
|
63
|
+
"@things-factory/context-ui": "^7.0.1-alpha.29",
|
64
|
+
"@things-factory/dashboard": "^7.0.1-alpha.29",
|
65
|
+
"@things-factory/export-ui": "^7.0.1-alpha.29",
|
66
|
+
"@things-factory/help": "^7.0.1-alpha.29",
|
67
|
+
"@things-factory/i18n-base": "^7.0.1-alpha.29",
|
68
|
+
"@things-factory/integration-melsec": "^7.0.1-alpha.29",
|
69
|
+
"@things-factory/integration-modbus": "^7.0.1-alpha.29",
|
70
|
+
"@things-factory/integration-opc": "^7.0.1-alpha.29",
|
71
|
+
"@things-factory/integration-ui": "^7.0.1-alpha.29",
|
72
|
+
"@things-factory/lite-menu": "^7.0.1-alpha.30",
|
73
|
+
"@things-factory/more-ui": "^7.0.1-alpha.30",
|
74
|
+
"@things-factory/notification": "^7.0.1-alpha.30",
|
75
|
+
"@things-factory/oauth2-client": "^7.0.1-alpha.29",
|
76
|
+
"@things-factory/print-ui": "^7.0.1-alpha.30",
|
77
|
+
"@things-factory/resource-ui": "^7.0.1-alpha.30",
|
78
|
+
"@things-factory/setting-base": "^7.0.1-alpha.29",
|
79
|
+
"@things-factory/setting-ui": "^7.0.1-alpha.29",
|
80
|
+
"@things-factory/shell": "^7.0.1-alpha.29",
|
81
|
+
"@things-factory/system": "^7.0.1-alpha.30"
|
82
82
|
},
|
83
83
|
"devDependencies": {
|
84
|
-
"@things-factory/builder": "^7.0.1-alpha.
|
84
|
+
"@things-factory/builder": "^7.0.1-alpha.29"
|
85
85
|
},
|
86
|
-
"gitHead": "
|
86
|
+
"gitHead": "5828e983eeebe3b3f38c1fbec0a1230240a340cd"
|
87
87
|
}
|