@things-factory/reference-app 4.1.15 → 4.1.16
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/menu.js +1 -0
- package/client/pages/layout-group-page.js +35 -0
- package/client/route.js +4 -0
- package/package.json +3 -3
- package/things-factory.config.js +4 -0
package/client/menu.js
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { css, html } from 'lit'
|
|
2
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
|
+
|
|
4
|
+
import { PageView, store } from '@things-factory/shell'
|
|
5
|
+
|
|
6
|
+
class LayoutGroupPage extends connect(store)(PageView) {
|
|
7
|
+
static get styles() {
|
|
8
|
+
return [
|
|
9
|
+
css`
|
|
10
|
+
:host {
|
|
11
|
+
display: flex;
|
|
12
|
+
}
|
|
13
|
+
`
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static get properties() {
|
|
18
|
+
return {
|
|
19
|
+
referenceApp: String
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
render() {
|
|
24
|
+
return html`
|
|
25
|
+
<section>
|
|
26
|
+
<h2>LAYOUT GROUP PAGE</h2>
|
|
27
|
+
<h3>${new Date().toLocaleTimeString()}</h3>
|
|
28
|
+
</section>
|
|
29
|
+
`
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
stateChanged(state) {}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
window.customElements.define('layout-group-page', LayoutGroupPage)
|
package/client/route.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.16",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@things-factory/grist-ui": "^4.1.15",
|
|
74
74
|
"@things-factory/help": "^4.1.15",
|
|
75
75
|
"@things-factory/integration-ui": "^4.1.15",
|
|
76
|
-
"@things-factory/lite-menu": "^4.1.
|
|
76
|
+
"@things-factory/lite-menu": "^4.1.16",
|
|
77
77
|
"@things-factory/more-ui": "^4.1.15",
|
|
78
78
|
"@things-factory/notification": "^4.1.15",
|
|
79
79
|
"@things-factory/oauth2-client": "^4.1.15",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@things-factory/builder": "^4.1.15"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "b83bcefaad07c80859d8a172e6d5d0adf571500d"
|
|
92
92
|
}
|