@things-factory/reference-app 4.1.15 → 4.1.22

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 CHANGED
@@ -4,6 +4,7 @@ export function getMenuTemplate() {
4
4
  name: '레이아웃팅',
5
5
  icon: 'devices',
6
6
  description: '헤더라인, 메뉴, 사이드바 등 전체 레이아웃과 반응형 기능을 설명합니다.',
7
+ path: 'layout-group-page',
7
8
  menus: [
8
9
  {
9
10
  name: 'Menu',
@@ -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
@@ -3,6 +3,10 @@ export default function route(page) {
3
3
  case '':
4
4
  return '/reference-app-main'
5
5
 
6
+ case 'layout-group-page':
7
+ import('./pages/layout-group-page')
8
+ return page
9
+
6
10
  case 'reference-app-main':
7
11
  import('./pages/main')
8
12
  return page
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/reference-app",
3
- "version": "4.1.15",
3
+ "version": "4.1.22",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -61,32 +61,32 @@
61
61
  "@operato/scene-tab": "^0.1.5",
62
62
  "@operato/shell": "^0.3.28",
63
63
  "@operato/utils": "^0.3.28",
64
- "@things-factory/api": "^4.1.15",
65
- "@things-factory/apptool-ui": "^4.1.15",
66
- "@things-factory/auth-ui": "^4.1.15",
67
- "@things-factory/board-service": "^4.1.15",
68
- "@things-factory/board-ui": "^4.1.15",
69
- "@things-factory/context-ui": "^4.1.15",
70
- "@things-factory/dashboard": "^4.1.15",
71
- "@things-factory/export-ui": "^4.1.15",
72
- "@things-factory/export-ui-excel": "^4.1.15",
73
- "@things-factory/grist-ui": "^4.1.15",
74
- "@things-factory/help": "^4.1.15",
75
- "@things-factory/integration-ui": "^4.1.15",
76
- "@things-factory/lite-menu": "^4.1.15",
77
- "@things-factory/more-ui": "^4.1.15",
78
- "@things-factory/notification": "^4.1.15",
79
- "@things-factory/oauth2-client": "^4.1.15",
80
- "@things-factory/print-ui": "^4.1.15",
81
- "@things-factory/resource-ui": "^4.1.15",
82
- "@things-factory/scene-form": "^4.1.15",
83
- "@things-factory/setting-base": "^4.1.15",
84
- "@things-factory/setting-ui": "^4.1.15",
85
- "@things-factory/shell": "^4.1.15",
86
- "@things-factory/system-ui": "^4.1.15"
64
+ "@things-factory/api": "^4.1.22",
65
+ "@things-factory/apptool-ui": "^4.1.22",
66
+ "@things-factory/auth-ui": "^4.1.22",
67
+ "@things-factory/board-service": "^4.1.22",
68
+ "@things-factory/board-ui": "^4.1.22",
69
+ "@things-factory/context-ui": "^4.1.22",
70
+ "@things-factory/dashboard": "^4.1.22",
71
+ "@things-factory/export-ui": "^4.1.22",
72
+ "@things-factory/export-ui-excel": "^4.1.22",
73
+ "@things-factory/grist-ui": "^4.1.22",
74
+ "@things-factory/help": "^4.1.22",
75
+ "@things-factory/integration-ui": "^4.1.22",
76
+ "@things-factory/lite-menu": "^4.1.22",
77
+ "@things-factory/more-ui": "^4.1.22",
78
+ "@things-factory/notification": "^4.1.22",
79
+ "@things-factory/oauth2-client": "^4.1.22",
80
+ "@things-factory/print-ui": "^4.1.22",
81
+ "@things-factory/resource-ui": "^4.1.22",
82
+ "@things-factory/scene-form": "^4.1.19",
83
+ "@things-factory/setting-base": "^4.1.22",
84
+ "@things-factory/setting-ui": "^4.1.22",
85
+ "@things-factory/shell": "^4.1.22",
86
+ "@things-factory/system-ui": "^4.1.22"
87
87
  },
88
88
  "devDependencies": {
89
- "@things-factory/builder": "^4.1.15"
89
+ "@things-factory/builder": "^4.1.19"
90
90
  },
91
- "gitHead": "d4839545ae5c0a29d1ab0237d90f724bba252d2b"
91
+ "gitHead": "e40b890d9a573562872298a6b79b26f600f607bf"
92
92
  }
@@ -4,6 +4,10 @@ import route from './client/route'
4
4
  export default {
5
5
  route,
6
6
  routes: [
7
+ {
8
+ tagname: 'layout-group-page',
9
+ page: 'layout-group-page'
10
+ },
7
11
  {
8
12
  tagname: 'reference-app-main',
9
13
  page: 'reference-app-main'