@things-factory/operato-fleet 7.0.1-alpha.1 → 7.0.1-alpha.100
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 +6 -2
- package/client/actions/fleets.js +1 -1
- package/client/bootstrap.js +20 -10
- package/client/commons/common-map.js +2 -2
- package/client/commons/fleet-item.js +11 -9
- package/client/commons/fleet-search.js +4 -4
- package/client/commons/geofence-item.js +4 -3
- package/client/commons/geofence-search.js +3 -3
- package/client/commons/marker-info-content.js +1 -1
- package/client/pages/admin/admin.js +3 -3
- package/client/pages/client/client.js +3 -3
- package/client/pages/device/device.js +3 -3
- package/client/pages/fleet-page-style.js +1 -1
- package/client/pages/geofence/geofence.js +2 -2
- package/client/pages/monitoring/monitoring.js +3 -3
- package/client/pages/report/report-air-pressure.js +3 -3
- package/client/pages/report/report-based-on-track.js +2 -2
- package/client/pages/report/report-breakdown.js +3 -3
- package/client/pages/report/report-delivery.js +4 -4
- package/client/pages/report/report-device.js +4 -4
- package/client/pages/report/report-humidity.js +3 -3
- package/client/pages/report/report-illuminance.js +3 -3
- package/client/pages/report/report-shock.js +3 -3
- package/client/pages/report/report-style.js +1 -1
- package/client/pages/report/report-temperature.js +3 -3
- package/client/pages/report/report.js +9 -8
- package/client/themes/app-theme.css +19 -4
- package/client/themes/grist-theme.css +7 -5
- package/client/themes/layout-theme.css +2 -2
- package/client/themes/report-theme.css +1 -1
- package/client/viewparts/infowindow-setting-let.js +6 -7
- package/client/viewparts/menu-tools.js +1 -1
- package/config/config.production.js +0 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +27 -26
- package/schema.graphql +4314 -0
- package/views/auth-page.html +3 -1
- package/views/public/home.html +4 -2
|
@@ -35,7 +35,7 @@ body {
|
|
|
35
35
|
--button-container-button-height: initial;
|
|
36
36
|
--button-container-button-border: var(--button-border);
|
|
37
37
|
|
|
38
|
-
--popup-content-background-color: var(--
|
|
38
|
+
--popup-content-background-color: var(--md-sys-color-background);
|
|
39
39
|
--popup-content-padding: 10px 20px;
|
|
40
40
|
|
|
41
41
|
/* components - floating overlay style */
|
|
@@ -54,7 +54,7 @@ body {
|
|
|
54
54
|
|
|
55
55
|
/* components - resize splitter style */
|
|
56
56
|
--splitter-background-color: rgba(0, 0, 0, 0.1);
|
|
57
|
-
--splitter-hover-background-color:
|
|
57
|
+
--splitter-hover-background-color: rgba(0, 0, 0, 0.1);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
@media only screen and (max-width: 460px) {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import '@material/web/icon/icon.js'
|
|
1
2
|
import '@operato/board/ox-board-selector.js'
|
|
2
3
|
import '@operato/i18n/ox-i18n.js'
|
|
3
4
|
|
|
@@ -7,7 +8,7 @@ import { connect } from 'pwa-helpers'
|
|
|
7
8
|
|
|
8
9
|
import { openPopup } from '@operato/layout'
|
|
9
10
|
import { fetchBoardSettings, UPDATE_BOARD_SETTINGS } from '@things-factory/dashboard'
|
|
10
|
-
import { i18next, localize } from '@
|
|
11
|
+
import { i18next, localize } from '@operato/i18n'
|
|
11
12
|
import { client, store } from '@things-factory/shell'
|
|
12
13
|
import { gqlBuilder } from '@things-factory/utils'
|
|
13
14
|
|
|
@@ -81,7 +82,7 @@ export class InfowindowSettingLet extends connect(store)(localize(i18next)(LitEl
|
|
|
81
82
|
grid-template-columns: 1fr 1fr;
|
|
82
83
|
}
|
|
83
84
|
|
|
84
|
-
|
|
85
|
+
md-icon {
|
|
85
86
|
background-color: var(--secondary-color, #394e64);
|
|
86
87
|
margin: 2px 2px 5px 2px;
|
|
87
88
|
padding: 0 5px;
|
|
@@ -91,8 +92,8 @@ export class InfowindowSettingLet extends connect(store)(localize(i18next)(LitEl
|
|
|
91
92
|
font-size: 18px;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
|
-
|
|
95
|
-
|
|
95
|
+
md-icon:hover,
|
|
96
|
+
md-icon:active {
|
|
96
97
|
background-color: var(--button-active-background-color, #22a6a7);
|
|
97
98
|
border: var(--button-active-border);
|
|
98
99
|
}
|
|
@@ -140,9 +141,7 @@ export class InfowindowSettingLet extends connect(store)(localize(i18next)(LitEl
|
|
|
140
141
|
<div>
|
|
141
142
|
<div class="name">${field.board.name}</div>
|
|
142
143
|
<span class="description">${field.board.description}</span>
|
|
143
|
-
<
|
|
144
|
-
more_horiz
|
|
145
|
-
</mwc-icon>
|
|
144
|
+
<md-icon @click=${e => this.onClickBoardSelector(field.key, field.description)}> more_horiz </md-icon>
|
|
146
145
|
${field.board.id
|
|
147
146
|
? html`
|
|
148
147
|
<a href=${`board-modeller/${field.board.id}`}>
|