@things-factory/operato-board 6.0.0-alpha.19 → 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/package.json +25 -25
- 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/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
106
|
"@things-factory/scene-visualizer": "^6.0.0-alpha.19",
|
|
107
|
-
"@things-factory/setting-ui": "^6.0.0-alpha.
|
|
108
|
-
"@things-factory/system-ui": "^6.0.0-alpha.
|
|
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