@things-factory/shell 4.0.41 → 4.0.45
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/app/app-style.js +5 -5
- package/client/app/app.js +8 -6
- package/package.json +13 -11
- package/things-factory.config.js +4 -0
- package/db.test.sqlite +0 -0
package/client/app/app-style.js
CHANGED
@@ -13,11 +13,11 @@ export const AppStyle = css`
|
|
13
13
|
height: 100vh;
|
14
14
|
}
|
15
15
|
|
16
|
-
header-bar {
|
16
|
+
ox-header-bar {
|
17
17
|
grid-area: header;
|
18
18
|
}
|
19
19
|
|
20
|
-
nav-bar {
|
20
|
+
ox-nav-bar {
|
21
21
|
grid-area: nav;
|
22
22
|
}
|
23
23
|
|
@@ -30,11 +30,11 @@ export const AppStyle = css`
|
|
30
30
|
flex-direction: row;
|
31
31
|
}
|
32
32
|
|
33
|
-
aside-bar {
|
33
|
+
ox-aside-bar {
|
34
34
|
grid-area: aside;
|
35
35
|
}
|
36
36
|
|
37
|
-
footer-bar {
|
37
|
+
ox-footer-bar {
|
38
38
|
grid-area: footer;
|
39
39
|
}
|
40
40
|
|
@@ -50,7 +50,7 @@ export const AppStyle = css`
|
|
50
50
|
display: none;
|
51
51
|
}
|
52
52
|
|
53
|
-
snack-bar {
|
53
|
+
ox-snack-bar {
|
54
54
|
z-index: 1000;
|
55
55
|
}
|
56
56
|
|
package/client/app/app.js
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
+
import '@operato/layout'
|
2
|
+
|
1
3
|
import { html, LitElement } from 'lit'
|
2
4
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
3
5
|
import { installRouter } from 'pwa-helpers/router.js'
|
4
6
|
|
5
7
|
import { navigateWithSilence, store, UPDATE_ACTIVE_PAGE, UPDATE_CONTEXT_PATH, UPDATE_MODULES } from '@operato/shell'
|
6
8
|
import { ScrollbarStyles } from '@operato/styles'
|
7
|
-
import { getPathInfo } from '@
|
9
|
+
import { getPathInfo } from '@operato/utils'
|
8
10
|
|
9
11
|
import { AppStyle } from './app-style'
|
10
12
|
|
@@ -33,17 +35,17 @@ class ThingsApp extends connect(store)(LitElement) {
|
|
33
35
|
var widebleed = (this._context && this._context.widebleed) || (params.widebleed && params.widebleed == 'Y')
|
34
36
|
|
35
37
|
return html`
|
36
|
-
<header-bar ?fullbleed=${fullbleed}></header-bar>
|
38
|
+
<ox-header-bar ?fullbleed=${fullbleed}></ox-header-bar>
|
37
39
|
|
38
|
-
<nav-bar ?fullbleed=${fullbleed || widebleed}></nav-bar>
|
40
|
+
<ox-nav-bar ?fullbleed=${fullbleed || widebleed}></ox-nav-bar>
|
39
41
|
|
40
42
|
<main></main>
|
41
43
|
|
42
|
-
<aside-bar ?fullbleed=${fullbleed || widebleed}></aside-bar>
|
44
|
+
<ox-aside-bar ?fullbleed=${fullbleed || widebleed}></ox-aside-bar>
|
43
45
|
|
44
|
-
<footer-bar ?fullbleed=${fullbleed}></footer-bar>
|
46
|
+
<ox-footer-bar ?fullbleed=${fullbleed}></ox-footer-bar>
|
45
47
|
|
46
|
-
<snack-bar></snack-bar>
|
48
|
+
<ox-snack-bar></ox-snack-bar>
|
47
49
|
`
|
48
50
|
}
|
49
51
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/shell",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.45",
|
4
4
|
"description": "Core module for framework",
|
5
5
|
"bin": {
|
6
6
|
"things-factory": "bin/things-factory",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"@graphql-tools/schema": "^8.2.0",
|
37
37
|
"@graphql-tools/utils": "^8.3.0",
|
38
38
|
"@hatiolab/koa-webpack": "^6.0.0",
|
39
|
-
"@hatiolab/things-scene": "^2.7.
|
39
|
+
"@hatiolab/things-scene": "^2.7.34",
|
40
40
|
"@koa/cors": "^3.1.0",
|
41
41
|
"@material/mwc-button": "^0.25.3",
|
42
42
|
"@material/mwc-fab": "^0.25.3",
|
@@ -44,14 +44,16 @@
|
|
44
44
|
"@material/mwc-icon-button": "^0.25.3",
|
45
45
|
"@material/mwc-slider": "^0.25.3",
|
46
46
|
"@material/mwc-textfield": "^0.25.3",
|
47
|
-
"@operato/board": "^0.3.
|
48
|
-
"@operato/graphql": "^0.3.
|
49
|
-
"@operato/
|
50
|
-
"@operato/
|
51
|
-
"@
|
52
|
-
"@
|
53
|
-
"@things-factory/
|
54
|
-
"@things-factory/
|
47
|
+
"@operato/board": "^0.3.28",
|
48
|
+
"@operato/graphql": "^0.3.28",
|
49
|
+
"@operato/help": "^0.3.28",
|
50
|
+
"@operato/layout": "^0.3.28",
|
51
|
+
"@operato/shell": "^0.3.28",
|
52
|
+
"@operato/utils": "^0.3.28",
|
53
|
+
"@things-factory/ejs-remote": "^4.0.45",
|
54
|
+
"@things-factory/env": "^4.0.45",
|
55
|
+
"@things-factory/styles": "^4.0.45",
|
56
|
+
"@things-factory/utils": "^4.0.45",
|
55
57
|
"@webcomponents/webcomponentsjs": "^2.6.0",
|
56
58
|
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
|
57
59
|
"apollo-server-core": "^3.5.0",
|
@@ -126,5 +128,5 @@
|
|
126
128
|
"resolutions": {
|
127
129
|
"core-js": "^3.16.0"
|
128
130
|
},
|
129
|
-
"gitHead": "
|
131
|
+
"gitHead": "6c37578551d77fed098e5eed4cd2cc9eb9c0dd4b"
|
130
132
|
}
|
package/things-factory.config.js
CHANGED
package/db.test.sqlite
DELETED
Binary file
|