@things-factory/reference-app 4.0.5 → 4.0.6
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/attachments/56a09233-daa3-4e11-90c6-a5f4861e433c.pdf +0 -0
- package/client/components/ocr-viewpart.js +20 -5
- package/client/pages/context-menu-page.js +91 -69
- package/client/pages/grist-mode-page.js +14 -12
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -8
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -18
- package/logs/application-2021-09-30-15.log +14 -0
- package/logs/{connections-2021-11-02-11.log → connections-2021-09-30-15.log} +0 -0
- package/package.json +43 -43
- package/translations/en.json +3 -2
- package/translations/ko.json +3 -2
- package/translations/ms.json +3 -2
- package/translations/zh.json +3 -2
- package/views/auth-page.html +0 -1
- package/attachments/69808491-8e6b-45e2-9bf8-dccea1c5b52e.png +0 -0
- package/attachments/7927fe8e-2246-453d-9869-7072b983437c.png +0 -0
- package/attachments/7d150574-01b8-4439-96a0-d57299f3ffcf.png +0 -0
- package/attachments/a1cf142c-f3c2-442c-b8d5-a7f9cc6a59b3.png +0 -0
- package/attachments/cb3ac834-ece0-4802-bef0-dfdc0fcd93bd.png +0 -0
- package/logs/application-2021-11-04-14.log +0 -4
- package/logs/application-2021-11-05-18.log +0 -6
- package/logs/connections-2021-11-03-11.log +0 -0
- package/logs/connections-2021-11-04-14.log +0 -0
- package/logs/connections-2021-11-05-18.log +0 -0
|
Binary file
|
|
@@ -7,6 +7,9 @@ import { css, html, LitElement } from 'lit-element'
|
|
|
7
7
|
|
|
8
8
|
import { client } from '@things-factory/shell'
|
|
9
9
|
|
|
10
|
+
var FILES = []
|
|
11
|
+
var RESULT = []
|
|
12
|
+
|
|
10
13
|
class OCRViewPart extends LitElement {
|
|
11
14
|
static get styles() {
|
|
12
15
|
return [
|
|
@@ -25,7 +28,17 @@ class OCRViewPart extends LitElement {
|
|
|
25
28
|
}
|
|
26
29
|
|
|
27
30
|
static get properties() {
|
|
28
|
-
return {
|
|
31
|
+
return {
|
|
32
|
+
_result: Array,
|
|
33
|
+
_files: Array
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
connectedCallback() {
|
|
38
|
+
super.connectedCallback()
|
|
39
|
+
|
|
40
|
+
this._files = FILES
|
|
41
|
+
this._result = RESULT
|
|
29
42
|
}
|
|
30
43
|
|
|
31
44
|
render() {
|
|
@@ -37,11 +50,13 @@ class OCRViewPart extends LitElement {
|
|
|
37
50
|
requestAnimationFrame(() => URL.revokeObjectURL(image))
|
|
38
51
|
}
|
|
39
52
|
|
|
40
|
-
return html`
|
|
53
|
+
return html`
|
|
54
|
+
<ox-ocr-helper @attached=${this.upload.bind(this)} .files=${this._files} .result=${this._result}> </ox-ocr-helper>
|
|
55
|
+
`
|
|
41
56
|
}
|
|
42
57
|
|
|
43
58
|
async upload(e) {
|
|
44
|
-
|
|
59
|
+
FILES = this._files = e.detail
|
|
45
60
|
|
|
46
61
|
const response = await client.query({
|
|
47
62
|
query: gql`
|
|
@@ -50,14 +65,14 @@ class OCRViewPart extends LitElement {
|
|
|
50
65
|
}
|
|
51
66
|
`,
|
|
52
67
|
variables: {
|
|
53
|
-
images:
|
|
68
|
+
images: this._files
|
|
54
69
|
},
|
|
55
70
|
context: { hasUpload: true }
|
|
56
71
|
})
|
|
57
72
|
|
|
58
73
|
if (!response.errors) {
|
|
59
74
|
const helper = this.shadowRoot.querySelector('ox-ocr-helper')
|
|
60
|
-
helper.result = response.data.ocrRequest.map(result => {
|
|
75
|
+
RESULT = helper.result = response.data.ocrRequest.map(result => {
|
|
61
76
|
return {
|
|
62
77
|
...result,
|
|
63
78
|
boundaries: JSON.parse(result.boundaries)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import '@material/mwc-icon'
|
|
2
|
-
import '@operato/
|
|
2
|
+
import '@operato/popup'
|
|
3
3
|
|
|
4
4
|
import { css, html } from 'lit-element'
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
|
+
import { PopupMenu } from '@operato/popup'
|
|
7
8
|
import { PageView, store } from '@things-factory/shell'
|
|
8
9
|
|
|
9
10
|
import { referencePageStyles } from './reference-page-styles'
|
|
@@ -39,93 +40,114 @@ class ContextMenuPage extends connect(store)(PageView) {
|
|
|
39
40
|
페이지내에 엘리먼트를 위치시키고 open method로 활성화 시키는 방법을 예시합니다. 데스크톱 브라우저 페이지 내 어느
|
|
40
41
|
위치에서든 마우스 우측버튼을 클릭하고, 모바일 디바이스에서는 탭을 오래누르면(longpress) 팝업메뉴가 동작합니다.
|
|
41
42
|
</p>
|
|
43
|
+
`
|
|
44
|
+
}
|
|
42
45
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
label="click me to toggle"
|
|
56
|
-
@click=${function (e) {
|
|
57
|
-
const target = e.currentTarget
|
|
58
|
-
const icon = target.querySelector('mwc-icon')
|
|
59
|
-
icon.innerHTML = icon.innerHTML == 'check' ? '' : 'check'
|
|
60
|
-
}}
|
|
61
|
-
>
|
|
62
|
-
<mwc-icon slot="icon" style="width: 20px;height: 20px;"></mwc-icon>
|
|
63
|
-
</popup-menuitem>
|
|
64
|
-
|
|
65
|
-
<popup-menuitem label="verified">
|
|
66
|
-
<mwc-icon slot="icon">verified</mwc-icon>
|
|
67
|
-
<popup-menu>
|
|
68
|
-
<popup-menuitem label="article">
|
|
46
|
+
firstUpdated() {
|
|
47
|
+
this.addEventListener('contextmenu', e => {
|
|
48
|
+
e.preventDefault()
|
|
49
|
+
|
|
50
|
+
PopupMenu.open({
|
|
51
|
+
template: html`
|
|
52
|
+
<ox-popup-menuitem
|
|
53
|
+
label="article - click me"
|
|
54
|
+
@selected=${function (e) {
|
|
55
|
+
console.log('first level article selected')
|
|
56
|
+
}}
|
|
57
|
+
>
|
|
69
58
|
<mwc-icon slot="icon">article</mwc-icon>
|
|
70
|
-
</popup-menuitem>
|
|
59
|
+
</ox-popup-menuitem>
|
|
71
60
|
|
|
72
|
-
<popup-menuitem label="home">
|
|
61
|
+
<ox-popup-menuitem label="home">
|
|
73
62
|
<mwc-icon slot="icon">home</mwc-icon>
|
|
74
|
-
</popup-menuitem>
|
|
75
|
-
|
|
76
|
-
<popup-menuitem label="
|
|
63
|
+
</ox-popup-menuitem>
|
|
64
|
+
|
|
65
|
+
<ox-popup-menuitem label="empty"> </ox-popup-menuitem>
|
|
66
|
+
|
|
67
|
+
<ox-popup-menuitem
|
|
68
|
+
label="click me to toggle"
|
|
69
|
+
@selected=${function (e) {
|
|
70
|
+
const icon = this.querySelector('mwc-icon')
|
|
71
|
+
icon.innerHTML = icon.innerHTML == 'check' ? '' : 'check'
|
|
72
|
+
}}
|
|
73
|
+
alive-on-select
|
|
74
|
+
>
|
|
75
|
+
<mwc-icon slot="icon" style="width: 20px;height: 20px;"></mwc-icon>
|
|
76
|
+
</ox-popup-menuitem>
|
|
77
|
+
|
|
78
|
+
<ox-popup-menuitem label="verified" @selected=${e => console.log('selected verified')}>
|
|
77
79
|
<mwc-icon slot="icon">verified</mwc-icon>
|
|
78
|
-
<popup-menu>
|
|
79
|
-
<popup-menuitem
|
|
80
|
+
<ox-popup-menu>
|
|
81
|
+
<ox-popup-menuitem
|
|
82
|
+
label="article"
|
|
83
|
+
@selected=${function (e) {
|
|
84
|
+
console.log('article selected')
|
|
85
|
+
}}
|
|
86
|
+
alive-on-select
|
|
87
|
+
>
|
|
80
88
|
<mwc-icon slot="icon">article</mwc-icon>
|
|
81
|
-
</popup-menuitem>
|
|
89
|
+
</ox-popup-menuitem>
|
|
82
90
|
|
|
83
|
-
<popup-menuitem label="home">
|
|
91
|
+
<ox-popup-menuitem label="home">
|
|
84
92
|
<mwc-icon slot="icon">home</mwc-icon>
|
|
85
|
-
</popup-menuitem>
|
|
93
|
+
</ox-popup-menuitem>
|
|
86
94
|
|
|
87
|
-
<popup-menuitem label="verified">
|
|
95
|
+
<ox-popup-menuitem label="verified">
|
|
88
96
|
<mwc-icon slot="icon">verified</mwc-icon>
|
|
89
|
-
|
|
97
|
+
<ox-popup-menu>
|
|
98
|
+
<ox-popup-menuitem label="article">
|
|
99
|
+
<mwc-icon slot="icon">article</mwc-icon>
|
|
100
|
+
</ox-popup-menuitem>
|
|
90
101
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
<div separator></div>
|
|
96
|
-
</popup-menu>
|
|
97
|
-
</popup-menuitem>
|
|
102
|
+
<ox-popup-menuitem label="home">
|
|
103
|
+
<mwc-icon slot="icon">home</mwc-icon>
|
|
104
|
+
</ox-popup-menuitem>
|
|
98
105
|
|
|
99
|
-
|
|
106
|
+
<ox-popup-menuitem label="verified">
|
|
107
|
+
<mwc-icon slot="icon">verified</mwc-icon>
|
|
108
|
+
</ox-popup-menuitem>
|
|
100
109
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
</popup-menu>
|
|
105
|
-
</popup-menuitem>
|
|
110
|
+
<ox-popup-menuitem label="checkbox">
|
|
111
|
+
<input type="checkbox" slot="icon" />
|
|
112
|
+
</ox-popup-menuitem>
|
|
106
113
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
114
|
+
<div separator></div>
|
|
115
|
+
</ox-popup-menu>
|
|
116
|
+
</ox-popup-menuitem>
|
|
110
117
|
|
|
111
|
-
|
|
118
|
+
<div separator></div>
|
|
112
119
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
120
|
+
<ox-popup-menuitem label="checkbox">
|
|
121
|
+
<input type="checkbox" slot="icon" />
|
|
122
|
+
</ox-popup-menuitem>
|
|
123
|
+
</ox-popup-menu>
|
|
124
|
+
</ox-popup-menuitem>
|
|
119
125
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
126
|
+
<ox-popup-menuitem label="checkbox in icon area" alive-on-select>
|
|
127
|
+
<input type="checkbox" slot="icon" />
|
|
128
|
+
</ox-popup-menuitem>
|
|
123
129
|
|
|
124
|
-
|
|
125
|
-
e.preventDefault()
|
|
130
|
+
<div separator></div>
|
|
126
131
|
|
|
127
|
-
|
|
128
|
-
|
|
132
|
+
<div menu>Plain Text</div>
|
|
133
|
+
|
|
134
|
+
<div menu alive-on-select>
|
|
135
|
+
<ox-checkbox label="checkbox" slot="icon" checked />checkbox</ox-checkbox>
|
|
136
|
+
</div>
|
|
137
|
+
|
|
138
|
+
<div menu alive-on-select>
|
|
139
|
+
<input id="checkbox-01" type="checkbox" />
|
|
140
|
+
<label for="checkbox-01">custom menu</label>
|
|
141
|
+
</div>
|
|
142
|
+
<div menu alive-on-select>
|
|
143
|
+
<label for="text-01">value</label>
|
|
144
|
+
<input id="text-01" type="text" value="Plain text input" />
|
|
145
|
+
</div>
|
|
146
|
+
`,
|
|
147
|
+
top: e.offsetY,
|
|
148
|
+
left: e.offsetX,
|
|
149
|
+
parent: this.renderRoot
|
|
150
|
+
})
|
|
129
151
|
})
|
|
130
152
|
}
|
|
131
153
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import '@operato/
|
|
1
|
+
import '@operato/popup'
|
|
2
2
|
import '@operato/data-grist'
|
|
3
3
|
|
|
4
4
|
import { css, html } from 'lit-element'
|
|
@@ -111,7 +111,7 @@ class GristModePage extends localize(i18next)(PageView) {
|
|
|
111
111
|
<mwc-icon
|
|
112
112
|
@click=${e => {
|
|
113
113
|
const target = e.currentTarget
|
|
114
|
-
this.renderRoot.querySelector('popup-
|
|
114
|
+
this.renderRoot.querySelector('ox-popup-list').open({
|
|
115
115
|
left: target.offsetLeft,
|
|
116
116
|
top: target.offsetTop + target.offsetHeight
|
|
117
117
|
})
|
|
@@ -121,7 +121,7 @@ class GristModePage extends localize(i18next)(PageView) {
|
|
|
121
121
|
<mwc-icon
|
|
122
122
|
@click=${e => {
|
|
123
123
|
const target = e.currentTarget
|
|
124
|
-
this.renderRoot.querySelector('popup-
|
|
124
|
+
this.renderRoot.querySelector('ox-popup-list').open({
|
|
125
125
|
left: target.offsetLeft,
|
|
126
126
|
top: target.offsetTop + target.offsetHeight
|
|
127
127
|
})
|
|
@@ -131,7 +131,7 @@ class GristModePage extends localize(i18next)(PageView) {
|
|
|
131
131
|
<mwc-icon
|
|
132
132
|
@click=${e => {
|
|
133
133
|
const target = e.currentTarget
|
|
134
|
-
this.renderRoot.querySelector('popup-
|
|
134
|
+
this.renderRoot.querySelector('ox-popup-list').open({
|
|
135
135
|
left: target.offsetLeft,
|
|
136
136
|
top: target.offsetTop + target.offsetHeight
|
|
137
137
|
})
|
|
@@ -139,26 +139,28 @@ class GristModePage extends localize(i18next)(PageView) {
|
|
|
139
139
|
>sort</mwc-icon
|
|
140
140
|
>
|
|
141
141
|
|
|
142
|
-
<popup-
|
|
143
|
-
<
|
|
144
|
-
|
|
142
|
+
<ox-popup-list alive-on-select>
|
|
143
|
+
<div
|
|
144
|
+
option
|
|
145
145
|
@click=${function (e) {
|
|
146
146
|
const icon = e.currentTarget.querySelector('mwc-icon')
|
|
147
147
|
icon.innerHTML = icon.innerHTML == 'check' ? '' : 'check'
|
|
148
148
|
}}
|
|
149
149
|
>
|
|
150
150
|
<mwc-icon slot="icon" style="width: 20px;height: 20px;"></mwc-icon>
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
151
|
+
<span>click me to toggle</span>
|
|
152
|
+
</div>
|
|
153
|
+
<div
|
|
154
|
+
option
|
|
154
155
|
@click=${function (e) {
|
|
155
156
|
const icon = e.currentTarget.querySelector('mwc-icon')
|
|
156
157
|
icon.innerHTML = icon.innerHTML == 'check' ? '' : 'check'
|
|
157
158
|
}}
|
|
158
159
|
>
|
|
159
160
|
<mwc-icon slot="icon" style="width: 20px;height: 20px;"></mwc-icon>
|
|
160
|
-
|
|
161
|
-
|
|
161
|
+
<span>click me to toggle</span>
|
|
162
|
+
</div>
|
|
163
|
+
</ox-popup-list>
|
|
162
164
|
</div>
|
|
163
165
|
</div>
|
|
164
166
|
</ox-grist>
|
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -6,14 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2021-
|
|
11
|
-
"hash": "
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1636103946107,
|
|
15
|
-
"name": "logs/application-2021-11-05-18.log",
|
|
16
|
-
"hash": "dca379ac4e315b99f4a38f1350437523"
|
|
9
|
+
"date": 1632981885831,
|
|
10
|
+
"name": "logs/application-2021-09-30-15.log",
|
|
11
|
+
"hash": "515e7b9c4a0e33cfa4f1218a88c8f042"
|
|
17
12
|
}
|
|
18
13
|
]
|
|
19
14
|
}
|
|
@@ -6,24 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2021-
|
|
11
|
-
"hash": "
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1635906208371,
|
|
15
|
-
"name": "logs/connections-2021-11-03-11.log",
|
|
16
|
-
"hash": "a1311491c36196b33b2dd55f164b95f7"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1636005260004,
|
|
20
|
-
"name": "logs/connections-2021-11-04-14.log",
|
|
21
|
-
"hash": "6d9ee9a4066c730e14f77f0396879d64"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"date": 1636103949582,
|
|
25
|
-
"name": "logs/connections-2021-11-05-18.log",
|
|
26
|
-
"hash": "f7593c79bc2d00a3832d894f74b529f8"
|
|
9
|
+
"date": 1632981891881,
|
|
10
|
+
"name": "logs/connections-2021-09-30-15.log",
|
|
11
|
+
"hash": "96dfe267599a1dba08dca294e7d8d0d1"
|
|
27
12
|
}
|
|
28
13
|
]
|
|
29
14
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
2021-09-30T06:04:49.542Z info: File Storage is Ready.
|
|
2
|
+
2021-09-30T06:04:56.532Z info: Database connection established
|
|
3
|
+
2021-09-30T06:04:57.913Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-09-30T06:04:57.915Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2021-09-30T06:05:31.284Z info: File Storage is Ready.
|
|
6
|
+
2021-09-30T06:05:37.067Z info: Database connection established
|
|
7
|
+
2021-09-30T06:05:38.136Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2021-09-30T06:05:38.148Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
9
|
+
2021-09-30T06:07:44.914Z info: File Storage is Ready.
|
|
10
|
+
2021-09-30T06:08:06.103Z info: File Storage is Ready.
|
|
11
|
+
2021-09-30T06:08:29.712Z info: File Storage is Ready.
|
|
12
|
+
2021-09-30T06:08:32.447Z info: Database connection established
|
|
13
|
+
2021-09-30T06:08:33.349Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
+
2021-09-30T06:08:33.349Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -38,49 +38,49 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@hatiolab/things-scene": "^2.7.12",
|
|
41
|
-
"@material/mwc-checkbox": "^0.
|
|
42
|
-
"@operato/data-grist": "^0.2.
|
|
43
|
-
"@operato/ghost-print": "0.
|
|
44
|
-
"@operato/
|
|
45
|
-
"@operato/
|
|
46
|
-
"@operato/pull-to-refresh": "^0.2.
|
|
47
|
-
"@
|
|
48
|
-
"@things-factory/
|
|
49
|
-
"@things-factory/
|
|
50
|
-
"@things-factory/
|
|
51
|
-
"@things-factory/board-
|
|
52
|
-
"@things-factory/
|
|
53
|
-
"@things-factory/
|
|
54
|
-
"@things-factory/
|
|
55
|
-
"@things-factory/export-ui
|
|
56
|
-
"@things-factory/
|
|
57
|
-
"@things-factory/
|
|
58
|
-
"@things-factory/
|
|
59
|
-
"@things-factory/
|
|
60
|
-
"@things-factory/
|
|
61
|
-
"@things-factory/
|
|
62
|
-
"@things-factory/
|
|
63
|
-
"@things-factory/
|
|
64
|
-
"@things-factory/
|
|
65
|
-
"@things-factory/
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/scene-
|
|
68
|
-
"@things-factory/scene-
|
|
69
|
-
"@things-factory/scene-
|
|
70
|
-
"@things-factory/scene-
|
|
71
|
-
"@things-factory/scene-
|
|
72
|
-
"@things-factory/scene-
|
|
73
|
-
"@things-factory/scene-
|
|
74
|
-
"@things-factory/scene-
|
|
75
|
-
"@things-factory/scene-
|
|
76
|
-
"@things-factory/scene-tab": "^4.0.
|
|
77
|
-
"@things-factory/setting-base": "^4.0.
|
|
78
|
-
"@things-factory/setting-ui": "^4.0.
|
|
79
|
-
"@things-factory/shell": "^4.0.
|
|
80
|
-
"@things-factory/system-ui": "^4.0.
|
|
41
|
+
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
+
"@operato/data-grist": "^0.2.28",
|
|
43
|
+
"@operato/ghost-print": "0.2.26",
|
|
44
|
+
"@operato/ocr": "^0.2.26",
|
|
45
|
+
"@operato/popup": "^0.2.26",
|
|
46
|
+
"@operato/pull-to-refresh": "^0.2.26",
|
|
47
|
+
"@operato/scene-switch": "^0.0.3",
|
|
48
|
+
"@things-factory/api": "^4.0.6",
|
|
49
|
+
"@things-factory/apptool-ui": "^4.0.6",
|
|
50
|
+
"@things-factory/auth-ui": "^4.0.6",
|
|
51
|
+
"@things-factory/board-service": "^4.0.6",
|
|
52
|
+
"@things-factory/board-ui": "^4.0.6",
|
|
53
|
+
"@things-factory/context-ui": "^4.0.6",
|
|
54
|
+
"@things-factory/dashboard": "^4.0.6",
|
|
55
|
+
"@things-factory/export-ui": "^4.0.6",
|
|
56
|
+
"@things-factory/export-ui-excel": "^4.0.6",
|
|
57
|
+
"@things-factory/grist-ui": "^4.0.6",
|
|
58
|
+
"@things-factory/help": "^4.0.6",
|
|
59
|
+
"@things-factory/i18n-ui": "^4.0.6",
|
|
60
|
+
"@things-factory/integration-ui": "^4.0.6",
|
|
61
|
+
"@things-factory/lite-menu": "^4.0.6",
|
|
62
|
+
"@things-factory/more-ui": "^4.0.6",
|
|
63
|
+
"@things-factory/notification": "^4.0.6",
|
|
64
|
+
"@things-factory/oauth2-client": "^4.0.6",
|
|
65
|
+
"@things-factory/print-ui": "^4.0.6",
|
|
66
|
+
"@things-factory/resource-ui": "^4.0.6",
|
|
67
|
+
"@things-factory/scene-chartjs": "^4.0.6",
|
|
68
|
+
"@things-factory/scene-clock": "^4.0.6",
|
|
69
|
+
"@things-factory/scene-form": "^4.0.6",
|
|
70
|
+
"@things-factory/scene-gauge": "^4.0.6",
|
|
71
|
+
"@things-factory/scene-half-roundrect": "^4.0.6",
|
|
72
|
+
"@things-factory/scene-indoor-map": "^4.0.6",
|
|
73
|
+
"@things-factory/scene-news-ticker": "^4.0.6",
|
|
74
|
+
"@things-factory/scene-progressbar": "^4.0.6",
|
|
75
|
+
"@things-factory/scene-random": "^4.0.6",
|
|
76
|
+
"@things-factory/scene-tab": "^4.0.6",
|
|
77
|
+
"@things-factory/setting-base": "^4.0.6",
|
|
78
|
+
"@things-factory/setting-ui": "^4.0.6",
|
|
79
|
+
"@things-factory/shell": "^4.0.6",
|
|
80
|
+
"@things-factory/system-ui": "^4.0.6"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@things-factory/builder": "^4.0.
|
|
83
|
+
"@things-factory/builder": "^4.0.6"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "471247c3499ba439b074c7654ae8d8e9fc3972f0"
|
|
86
86
|
}
|
package/translations/en.json
CHANGED
package/translations/ko.json
CHANGED
package/translations/ms.json
CHANGED
package/translations/zh.json
CHANGED
package/views/auth-page.html
CHANGED
|
@@ -80,7 +80,6 @@
|
|
|
80
80
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|
|
81
81
|
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
|
|
82
82
|
<script src="node_modules/web-animations-js/web-animations-next.min.js"></script>
|
|
83
|
-
<script src="node_modules/@lottiefiles/lottie-player/dist/lottie-player.js"></script>
|
|
84
83
|
<!-- Built with love using PWA Starter Kit -->
|
|
85
84
|
|
|
86
85
|
<script src="<%- elementScript %>"></script>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
2021-11-04T05:54:18.294Z info: File Storage is Ready.
|
|
2
|
-
2021-11-04T05:54:26.107Z info: Database connection established
|
|
3
|
-
2021-11-04T05:54:30.807Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2021-11-04T05:54:30.812Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2021-11-05T09:19:08.124Z info: File Storage is Ready.
|
|
2
|
-
2021-11-05T09:19:12.759Z info: Database connection established
|
|
3
|
-
2021-11-05T09:19:47.437Z info: File Storage is Ready.
|
|
4
|
-
2021-11-05T09:19:51.042Z info: Database connection established
|
|
5
|
-
2021-11-05T09:19:51.851Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2021-11-05T09:19:51.851Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
File without changes
|
|
File without changes
|