@things-factory/operato-board 6.0.0-alpha.18 → 6.0.0-alpha.20
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/_index.html +5 -0
- package/client/bootstrap.js +4 -3
- package/client/viewparts/menu-tools.js +7 -6
- package/package.json +26 -26
- package/views/auth-page.html +4 -0
- package/views/public/home.html +2 -0
package/_index.html
CHANGED
|
@@ -52,17 +52,22 @@
|
|
|
52
52
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
53
53
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" />
|
|
54
54
|
<style>
|
|
55
|
+
html,
|
|
55
56
|
body {
|
|
56
57
|
margin: 0;
|
|
57
58
|
padding: 0;
|
|
58
59
|
overflow: hidden;
|
|
59
60
|
|
|
61
|
+
overscroll-behavior-y: none;
|
|
62
|
+
|
|
60
63
|
/* This is a font-stack that tries to use the system-default sans-serifs first */
|
|
61
64
|
font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
62
65
|
line-height: 1.5;
|
|
63
66
|
-webkit-font-smoothing: antialiased;
|
|
64
67
|
|
|
65
68
|
accent-color: var(--primary-color);
|
|
69
|
+
|
|
70
|
+
accent-color: var(--primary-color);
|
|
66
71
|
}
|
|
67
72
|
</style>
|
|
68
73
|
|
package/client/bootstrap.js
CHANGED
|
@@ -3,6 +3,7 @@ import '@things-factory/board-ui'
|
|
|
3
3
|
import './viewparts/menu-tools'
|
|
4
4
|
import './apptools/favorite-tool'
|
|
5
5
|
import '@operato/help/ox-help-panel.js'
|
|
6
|
+
import '@operato/i18n/ox-i18n.js'
|
|
6
7
|
|
|
7
8
|
import { html } from 'lit-html'
|
|
8
9
|
|
|
@@ -55,7 +56,7 @@ export default function bootstrap() {
|
|
|
55
56
|
type: ADD_MORENDA,
|
|
56
57
|
morenda: {
|
|
57
58
|
icon: html` <mwc-icon>vpn_key</mwc-icon> `,
|
|
58
|
-
name: html` <i18n
|
|
59
|
+
name: html` <ox-i18n msgid="text.oauth2-clients"></ox-i18n> `,
|
|
59
60
|
action: () => {
|
|
60
61
|
navigate('oauth2-clients')
|
|
61
62
|
}
|
|
@@ -66,7 +67,7 @@ export default function bootstrap() {
|
|
|
66
67
|
type: ADD_MORENDA,
|
|
67
68
|
morenda: {
|
|
68
69
|
icon: html` <mwc-icon>extension</mwc-icon> `,
|
|
69
|
-
name: html` <i18n
|
|
70
|
+
name: html` <ox-i18n msgid="text.api-sandbox"></ox-i18n> `,
|
|
70
71
|
action: () => {
|
|
71
72
|
navigate('api-swagger')
|
|
72
73
|
}
|
|
@@ -77,7 +78,7 @@ export default function bootstrap() {
|
|
|
77
78
|
type: ADD_MORENDA,
|
|
78
79
|
morenda: {
|
|
79
80
|
icon: html` <mwc-icon>help</mwc-icon> `,
|
|
80
|
-
name: html` <i18n
|
|
81
|
+
name: html` <ox-i18n msgid="text.help"></ox-i18n> `,
|
|
81
82
|
action: () => {
|
|
82
83
|
navigate('help')
|
|
83
84
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import '@material/mwc-icon'
|
|
2
|
+
import '@operato/i18n/ox-i18n.js'
|
|
2
3
|
|
|
3
4
|
import { css, html, LitElement } from 'lit'
|
|
4
5
|
import { connect } from 'pwa-helpers'
|
|
@@ -88,37 +89,37 @@ export class MenuTools extends connect(store)(LitElement) {
|
|
|
88
89
|
<li>
|
|
89
90
|
<a href="board-list" ?active=${this.page == 'board-list'}>
|
|
90
91
|
<mwc-icon>dvr</mwc-icon>
|
|
91
|
-
<div><i18n
|
|
92
|
+
<div><ox-i18n msgid="label.board"></ox-i18n></div>
|
|
92
93
|
</a>
|
|
93
94
|
</li>
|
|
94
95
|
<li>
|
|
95
96
|
<a href="play-list" ?active=${this.page == 'play-list'}>
|
|
96
97
|
<mwc-icon>airplay</mwc-icon>
|
|
97
|
-
<div><i18n
|
|
98
|
+
<div><ox-i18n msgid="label.player"></ox-i18n></div>
|
|
98
99
|
</a>
|
|
99
100
|
</li>
|
|
100
101
|
<li>
|
|
101
102
|
<a href="font-list" ?active=${this.page == 'font-list'}>
|
|
102
103
|
<mwc-icon>font_download</mwc-icon>
|
|
103
|
-
<div><i18n
|
|
104
|
+
<div><ox-i18n msgid="label.font"></ox-i18n></div>
|
|
104
105
|
</a>
|
|
105
106
|
</li>
|
|
106
107
|
<li>
|
|
107
108
|
<a href="attachment-list" ?active=${this.page == 'attachment-list'}>
|
|
108
109
|
<mwc-icon>attachment</mwc-icon>
|
|
109
|
-
<div><i18n
|
|
110
|
+
<div><ox-i18n msgid="label.attachment"></ox-i18n></div>
|
|
110
111
|
</a>
|
|
111
112
|
</li>
|
|
112
113
|
<li>
|
|
113
114
|
<a href="connection-list" ?active=${this.page == 'connection-list'}>
|
|
114
115
|
<mwc-icon>device_hub</mwc-icon>
|
|
115
|
-
<div><i18n
|
|
116
|
+
<div><ox-i18n msgid="label.connection"></ox-i18n></div>
|
|
116
117
|
</a>
|
|
117
118
|
</li>
|
|
118
119
|
<li>
|
|
119
120
|
<a href="scenario-list" ?active=${this.page == 'scenario-list'}>
|
|
120
121
|
<mwc-icon>format_list_numbered</mwc-icon>
|
|
121
|
-
<div><i18n
|
|
122
|
+
<div><ox-i18n msgid="label.scenario"></ox-i18n></div>
|
|
122
123
|
</a>
|
|
123
124
|
</li>
|
|
124
125
|
</ul>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.20",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -78,38 +78,38 @@
|
|
|
78
78
|
"@operato/shell": "^1.0.1",
|
|
79
79
|
"@operato/styles": "^1.0.0",
|
|
80
80
|
"@operato/utils": "^1.0.1",
|
|
81
|
-
"@things-factory/apptool-ui": "^6.0.0-alpha.
|
|
82
|
-
"@things-factory/auth-ui": "^6.0.0-alpha.
|
|
83
|
-
"@things-factory/board-service": "^6.0.0-alpha.
|
|
84
|
-
"@things-factory/board-ui": "^6.0.0-alpha.
|
|
85
|
-
"@things-factory/context-ui": "^6.0.0-alpha.
|
|
86
|
-
"@things-factory/export-ui": "^6.0.0-alpha.
|
|
87
|
-
"@things-factory/fav-base": "^6.0.0-alpha.
|
|
88
|
-
"@things-factory/font-base": "^6.0.0-alpha.
|
|
81
|
+
"@things-factory/apptool-ui": "^6.0.0-alpha.20",
|
|
82
|
+
"@things-factory/auth-ui": "^6.0.0-alpha.20",
|
|
83
|
+
"@things-factory/board-service": "^6.0.0-alpha.20",
|
|
84
|
+
"@things-factory/board-ui": "^6.0.0-alpha.20",
|
|
85
|
+
"@things-factory/context-ui": "^6.0.0-alpha.20",
|
|
86
|
+
"@things-factory/export-ui": "^6.0.0-alpha.20",
|
|
87
|
+
"@things-factory/fav-base": "^6.0.0-alpha.20",
|
|
88
|
+
"@things-factory/font-base": "^6.0.0-alpha.20",
|
|
89
89
|
"@things-factory/form-ui": "^6.0.0-alpha.8",
|
|
90
|
-
"@things-factory/help": "^6.0.0-alpha.
|
|
91
|
-
"@things-factory/i18n-base": "^6.0.0-alpha.
|
|
92
|
-
"@things-factory/import-ui": "^6.0.0-alpha.
|
|
93
|
-
"@things-factory/integration-notification": "^6.0.0-alpha.
|
|
94
|
-
"@things-factory/integration-ui": "^6.0.0-alpha.
|
|
90
|
+
"@things-factory/help": "^6.0.0-alpha.20",
|
|
91
|
+
"@things-factory/i18n-base": "^6.0.0-alpha.20",
|
|
92
|
+
"@things-factory/import-ui": "^6.0.0-alpha.20",
|
|
93
|
+
"@things-factory/integration-notification": "^6.0.0-alpha.20",
|
|
94
|
+
"@things-factory/integration-ui": "^6.0.0-alpha.20",
|
|
95
95
|
"@things-factory/layout-ui": "^6.0.0-alpha.8",
|
|
96
|
-
"@things-factory/more-ui": "^6.0.0-alpha.
|
|
97
|
-
"@things-factory/notification": "^6.0.0-alpha.
|
|
98
|
-
"@things-factory/oauth2-client": "^6.0.0-alpha.
|
|
99
|
-
"@things-factory/offline-ui": "^6.0.0-alpha.
|
|
96
|
+
"@things-factory/more-ui": "^6.0.0-alpha.20",
|
|
97
|
+
"@things-factory/notification": "^6.0.0-alpha.20",
|
|
98
|
+
"@things-factory/oauth2-client": "^6.0.0-alpha.20",
|
|
99
|
+
"@things-factory/offline-ui": "^6.0.0-alpha.20",
|
|
100
100
|
"@things-factory/operato-license-checker": "^3.1.0",
|
|
101
101
|
"@things-factory/pdf": "^6.0.0-alpha.13",
|
|
102
|
-
"@things-factory/print-service": "^6.0.0-alpha.
|
|
103
|
-
"@things-factory/print-ui": "^6.0.0-alpha.
|
|
104
|
-
"@things-factory/resource-ui": "^6.0.0-alpha.
|
|
102
|
+
"@things-factory/print-service": "^6.0.0-alpha.20",
|
|
103
|
+
"@things-factory/print-ui": "^6.0.0-alpha.20",
|
|
104
|
+
"@things-factory/resource-ui": "^6.0.0-alpha.20",
|
|
105
105
|
"@things-factory/scene-google-map": "^6.0.0-alpha.8",
|
|
106
|
-
"@things-factory/scene-visualizer": "^6.0.0-alpha.
|
|
107
|
-
"@things-factory/setting-ui": "^6.0.0-alpha.
|
|
108
|
-
"@things-factory/system-ui": "^6.0.0-alpha.
|
|
106
|
+
"@things-factory/scene-visualizer": "^6.0.0-alpha.19",
|
|
107
|
+
"@things-factory/setting-ui": "^6.0.0-alpha.20",
|
|
108
|
+
"@things-factory/system-ui": "^6.0.0-alpha.20"
|
|
109
109
|
},
|
|
110
110
|
"devDependencies": {
|
|
111
|
-
"@things-factory/board-test": "^6.0.0-alpha.
|
|
111
|
+
"@things-factory/board-test": "^6.0.0-alpha.20",
|
|
112
112
|
"@things-factory/builder": "^6.0.0-alpha.14"
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "6e50e3cefe9c4158500f3cb2bf14300684c05623"
|
|
115
115
|
}
|
package/views/auth-page.html
CHANGED
|
@@ -59,10 +59,14 @@
|
|
|
59
59
|
padding: 0;
|
|
60
60
|
overflow: hidden;
|
|
61
61
|
|
|
62
|
+
overscroll-behavior-y: none;
|
|
63
|
+
|
|
62
64
|
/* This is a font-stack that tries to use the system-default sans-serifs first */
|
|
63
65
|
font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
64
66
|
line-height: 1.5;
|
|
65
67
|
-webkit-font-smoothing: antialiased;
|
|
68
|
+
|
|
69
|
+
accent-color: var(--primary-color);
|
|
66
70
|
}
|
|
67
71
|
</style>
|
|
68
72
|
|
package/views/public/home.html
CHANGED